Skip to content

Instantly share code, notes, and snippets.

@hallazzang
Last active June 23, 2022 02:56
Show Gist options
  • Save hallazzang/dae2c6f089a195460623ce6336a16d3d to your computer and use it in GitHub Desktop.
Save hallazzang/dae2c6f089a195460623ce6336a16d3d to your computer and use it in GitHub Desktop.
Cosmos SDK data type limits

sdk.Int

  • maxBitLen = 256
  • positiveMax = 115792089237316195423570985008687907853269984665640564039457584007913129639935(78 digits)
  • negativeMin = -115792089237316195423570985008687907853269984665640564039457584007913129639935(78 digits)

sdk.Dec

  • maxDecBitLen = 256 + 60 = 316
  • positiveMax = 133499189745056880149688856635597007162669032647290798121690100488888732861290.034376435130433535(78 + 18 digits)
  • positiveMin = 0.000000000000000001(18 digits)
  • negativeMin = -133499189745056880149688856635597007162669032647290798121690100488888732861290.034376435130433535(78 + 18 digits)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment