aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/util/constants.ts
blob: d2a6352ed00c8b28593cb9d58a796b7340f0c7e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export const constants = {
    NULL_BYTES: '0x',
    INVALID_OPCODE: 'invalid opcode',
    REVERT: 'revert',
    TESTRPC_NETWORK_ID: 50,
    RPC_URL: 'http://localhost:8545',
    MAX_ETHERTOKEN_WITHDRAW_GAS: 43000,
    MAX_TOKEN_TRANSFERFROM_GAS: 80000,
    MAX_TOKEN_APPROVE_GAS: 60000,
};