aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/constants.ts
blob: 1b11d7055a92b985e06ec14190b34d0ededf5fea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import * as BigNumber from 'bignumber.js';

export const constants = {
    NULL_ADDRESS: '0x0000000000000000000000000000000000000000',
    TESTRPC_NETWORK_ID: 50,
    MAX_DIGITS_IN_UNSIGNED_256_INT: 78,
    INVALID_JUMP_PATTERN: 'invalid JUMP at',
    OUT_OF_GAS_PATTERN: 'out of gas',
    UNLIMITED_ALLOWANCE_IN_BASE_UNITS: new BigNumber(2).pow(256).minus(1),
};