Hello,

Sign up to join our community!

Welcome Back,

Please login to your account!

Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Hi guys! I noticed the following. I am working with 18 decimals so I sometimes need to define numbers like: managed_biguint!(1_000_000_000_000_000_000) This works as expected. However, if I use one more zero: managed_biguint!(10_000_000_000_000_000_000) it yields the incorrect number... even though 10_000_000_000_000_000_000 fits in an u64. For example, in this case it yields 7538dcfb76180000 which translates to 8446744073709551616 The error starts between 9_000_000_000_000_000_000 to 9_300_000_000_000_000_000. Any ideas?