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
Is your feature request related to a problem? Please describe.
u256 are common used in solidity. Lack of u256 cause many problems when bridging asset or protocol into Move contracts.
And since Move doesn't float types, we need a large integer type to simulate float calculation for u128.
Pitch
A builtin support for u256 is what I'm expecting for.
alternative is using native structs, but it's tedious.
Additional context
The text was updated successfully, but these errors were encountered:
🚀 Feature Request
Support u256 primitive type.
May also consider u16, u32, and signed integer type like i8, i16, i32 , i64, i128, i256.
A similar discussion exists in diem repo diem/diem#8504
Motivation
Is your feature request related to a problem? Please describe.
u256 are common used in solidity. Lack of u256 cause many problems when bridging asset or protocol into Move contracts.
And since Move doesn't float types, we need a large integer type to simulate float calculation for u128.
Pitch
A builtin support for u256 is what I'm expecting for.
alternative is using native structs, but it's tedious.
Additional context
The text was updated successfully, but these errors were encountered: