constants.js 185 B

1234567
  1. const MAX_UINT48 = web3.utils.toBN(1).shln(48).subn(1).toString();
  2. const MAX_UINT64 = web3.utils.toBN(1).shln(64).subn(1).toString();
  3. module.exports = {
  4. MAX_UINT48,
  5. MAX_UINT64,
  6. };