You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the major goals of the Framework WG is to breakdown the monolithic SDK into smaller easier to maintain component modules. sdk.Int is used in lots of generated code and can be standalone.
The proposed path for modularizing math functionality is:
create a new math go module in this repo with a copy of the current Int functionality
replace the existing sdk.Int with aliases to the math go module as was done for the migration of types/errors to the standalone errors go module
The text was updated successfully, but these errors were encountered:
One of the major goals of the Framework WG is to breakdown the monolithic SDK into smaller easier to maintain component modules.
sdk.Int
is used in lots of generated code and can be standalone.The proposed path for modularizing math functionality is:
math
go module in this repo with a copy of the currentInt
functionalitysdk.Int
with aliases to themath
go module as was done for the migration oftypes/errors
to the standaloneerrors
go moduleThe text was updated successfully, but these errors were encountered: