aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/test/utils/artifacts.ts
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2018-07-23 08:10:07 +0800
committerAmir Bandeali <abandeali1@gmail.com>2018-07-23 22:34:47 +0800
commitc2ae9f62a41466c714a5e2232782d08261464b9c (patch)
tree54ae38ad5def1d47bb51fe7af417d3f82c57bf9f /packages/contracts/test/utils/artifacts.ts
parent4159a8fe6e621fa01ccac6b97778374be658d984 (diff)
downloaddexon-sol-tools-c2ae9f62a41466c714a5e2232782d08261464b9c.tar
dexon-sol-tools-c2ae9f62a41466c714a5e2232782d08261464b9c.tar.gz
dexon-sol-tools-c2ae9f62a41466c714a5e2232782d08261464b9c.tar.bz2
dexon-sol-tools-c2ae9f62a41466c714a5e2232782d08261464b9c.tar.lz
dexon-sol-tools-c2ae9f62a41466c714a5e2232782d08261464b9c.tar.xz
dexon-sol-tools-c2ae9f62a41466c714a5e2232782d08261464b9c.tar.zst
dexon-sol-tools-c2ae9f62a41466c714a5e2232782d08261464b9c.zip
Add tests to verify ZRX_ASSET_DATA
Diffstat (limited to 'packages/contracts/test/utils/artifacts.ts')
-rw-r--r--packages/contracts/test/utils/artifacts.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/contracts/test/utils/artifacts.ts b/packages/contracts/test/utils/artifacts.ts
index 854c1cd06..63bd555a4 100644
--- a/packages/contracts/test/utils/artifacts.ts
+++ b/packages/contracts/test/utils/artifacts.ts
@@ -15,6 +15,7 @@ import * as MultiSigWallet from '../../artifacts/MultiSigWallet.json';
import * as MultiSigWalletWithTimeLock from '../../artifacts/MultiSigWalletWithTimeLock.json';
import * as TestAssetProxyDispatcher from '../../artifacts/TestAssetProxyDispatcher.json';
import * as TestAssetProxyOwner from '../../artifacts/TestAssetProxyOwner.json';
+import * as TestConstants from '../../artifacts/TestConstants.json';
import * as TestLibBytes from '../../artifacts/TestLibBytes.json';
import * as TestLibs from '../../artifacts/TestLibs.json';
import * as TestSignatureValidator from '../../artifacts/TestSignatureValidator.json';
@@ -42,6 +43,7 @@ export const artifacts = {
MultiSigWalletWithTimeLock: (MultiSigWalletWithTimeLock as any) as ContractArtifact,
TestAssetProxyOwner: (TestAssetProxyOwner as any) as ContractArtifact,
TestAssetProxyDispatcher: (TestAssetProxyDispatcher as any) as ContractArtifact,
+ TestConstants: (TestConstants as any) as ContractArtifact,
TestLibBytes: (TestLibBytes as any) as ContractArtifact,
TestLibs: (TestLibs as any) as ContractArtifact,
TestSignatureValidator: (TestSignatureValidator as any) as ContractArtifact,