aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/util/constants.ts
blob: d287986b7df578d4921c6061ad59d3bdac68aa2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { BigNumber } from '@0xproject/utils';

export const constants = {
    INVALID_OPCODE: 'invalid opcode',
    REVERT: 'revert',
    TESTRPC_NETWORK_ID: 50,
    MAX_ETHERTOKEN_WITHDRAW_GAS: 43000,
    MAX_TOKEN_TRANSFERFROM_GAS: 80000,
    MAX_TOKEN_APPROVE_GAS: 60000,
    DUMMY_TOKEN_NAME: '',
    DUMMY_TOKEN_SYMBOL: '',
    DUMMY_TOKEN_DECIMALS: new BigNumber(18),
    DUMMY_TOKEN_TOTAL_SUPPLY: new BigNumber(0),
};