numbers.d.ts 954 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * A constant for the order N for the secp256k1 curve.
  3. *
  4. * (**i.e.** ``0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141n``)
  5. */
  6. export declare const N: bigint;
  7. /**
  8. * A constant for the number of wei in a single ether.
  9. *
  10. * (**i.e.** ``1000000000000000000n``)
  11. */
  12. export declare const WeiPerEther: bigint;
  13. /**
  14. * A constant for the maximum value for a ``uint256``.
  15. *
  16. * (**i.e.** ``0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffn``)
  17. */
  18. export declare const MaxUint256: bigint;
  19. /**
  20. * A constant for the minimum value for an ``int256``.
  21. *
  22. * (**i.e.** ``-8000000000000000000000000000000000000000000000000000000000000000n``)
  23. */
  24. export declare const MinInt256: bigint;
  25. /**
  26. * A constant for the maximum value for an ``int256``.
  27. *
  28. * (**i.e.** ``0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffn``)
  29. */
  30. export declare const MaxInt256: bigint;
  31. //# sourceMappingURL=numbers.d.ts.map