* abi-gen/test: recompile contract fixtures for 3.0 It seems this hadn't been done since the merge with the 3.0 branch. * Sync `monorepo$ yarn test` exclusions to CI config * sra-spec: correct typo * contract-wrappers: TODO after coord.-server update * utils: fix typo in comment * Refactor networkId to chainId everywhere * Update CHANGELOGs
11 lines
334 B
TypeScript
11 lines
334 B
TypeScript
import { BigNumber } from '@0x/utils';
|
|
|
|
export const constants = {
|
|
optimizerEnabled: false,
|
|
gasPrice: new BigNumber(20000000000),
|
|
timeoutMs: 30000,
|
|
zrxTokenAddress: '0xe41d2489571d322189246dafa5ebde1f4699f498',
|
|
tokenTransferProxyAddress: '0x8da0d80f5007ef1e431dd2127178d224e32c2ef4',
|
|
contracts: '*' as '*',
|
|
};
|