diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-01-18 22:17:17 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-01-18 22:17:17 +0800 |
commit | ba987b0574211f67a734a21fc885e446a03cad63 (patch) | |
tree | c705b115b8d84b9c203f70e6954760b1b7359703 /packages/deployer/test/util | |
parent | b20f34adb7726c4389012c2373bacc7e1b05b620 (diff) | |
download | dexon-sol-tools-ba987b0574211f67a734a21fc885e446a03cad63.tar dexon-sol-tools-ba987b0574211f67a734a21fc885e446a03cad63.tar.gz dexon-sol-tools-ba987b0574211f67a734a21fc885e446a03cad63.tar.bz2 dexon-sol-tools-ba987b0574211f67a734a21fc885e446a03cad63.tar.lz dexon-sol-tools-ba987b0574211f67a734a21fc885e446a03cad63.tar.xz dexon-sol-tools-ba987b0574211f67a734a21fc885e446a03cad63.tar.zst dexon-sol-tools-ba987b0574211f67a734a21fc885e446a03cad63.zip |
Move tests to a separate folder
Diffstat (limited to 'packages/deployer/test/util')
-rw-r--r-- | packages/deployer/test/util/constants.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/deployer/test/util/constants.ts b/packages/deployer/test/util/constants.ts new file mode 100644 index 000000000..d52076607 --- /dev/null +++ b/packages/deployer/test/util/constants.ts @@ -0,0 +1,11 @@ +import { BigNumber } from '@0xproject/utils'; + +export const constants = { + networkId: 0, + jsonrpcPort: 8545, + optimizerEnabled: 0, + gasPrice: new BigNumber(20000000000), + timeoutMs: 20000, + zrxTokenAddress: '0xe41d2489571d322189246dafa5ebde1f4699f498', + tokenTransferProxyAddress: '0x8da0d80f5007ef1e431dd2127178d224e32c2ef4', +}; |