aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/test/utils/artifacts.ts
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2018-08-22 11:43:23 +0800
committerGitHub <noreply@github.com>2018-08-22 11:43:23 +0800
commit80e52464a6fdf9576776214f77e46d441b959b06 (patch)
tree964c5c3cb0eeacf70bece4e485b5fddceea2adb4 /packages/contracts/test/utils/artifacts.ts
parentf53157414f144a7ea8c24126c9d75d3168228130 (diff)
parent3760eb5bafcc0980b3a42dd5f10e745390702b16 (diff)
downloaddexon-sol-tools-80e52464a6fdf9576776214f77e46d441b959b06.tar
dexon-sol-tools-80e52464a6fdf9576776214f77e46d441b959b06.tar.gz
dexon-sol-tools-80e52464a6fdf9576776214f77e46d441b959b06.tar.bz2
dexon-sol-tools-80e52464a6fdf9576776214f77e46d441b959b06.tar.lz
dexon-sol-tools-80e52464a6fdf9576776214f77e46d441b959b06.tar.xz
dexon-sol-tools-80e52464a6fdf9576776214f77e46d441b959b06.tar.zst
dexon-sol-tools-80e52464a6fdf9576776214f77e46d441b959b06.zip
Merge pull request #985 from 0xProject/feature/contracts/orderValidator
[contracts] Add contract for batch validating orders
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 e86ad5406..21dd932c6 100644
--- a/packages/contracts/test/utils/artifacts.ts
+++ b/packages/contracts/test/utils/artifacts.ts
@@ -15,6 +15,7 @@ import * as InvalidERC721Receiver from '../../artifacts/InvalidERC721Receiver.js
import * as MixinAuthorizable from '../../artifacts/MixinAuthorizable.json';
import * as MultiSigWallet from '../../artifacts/MultiSigWallet.json';
import * as MultiSigWalletWithTimeLock from '../../artifacts/MultiSigWalletWithTimeLock.json';
+import * as OrderValidator from '../../artifacts/OrderValidator.json';
import * as TestAssetProxyDispatcher from '../../artifacts/TestAssetProxyDispatcher.json';
import * as TestAssetProxyOwner from '../../artifacts/TestAssetProxyOwner.json';
import * as TestConstants from '../../artifacts/TestConstants.json';
@@ -46,6 +47,7 @@ export const artifacts = {
MixinAuthorizable: (MixinAuthorizable as any) as ContractArtifact,
MultiSigWallet: (MultiSigWallet as any) as ContractArtifact,
MultiSigWalletWithTimeLock: (MultiSigWalletWithTimeLock as any) as ContractArtifact,
+ OrderValidator: (OrderValidator as any) as ContractArtifact,
TestAssetProxyOwner: (TestAssetProxyOwner as any) as ContractArtifact,
TestAssetProxyDispatcher: (TestAssetProxyDispatcher as any) as ContractArtifact,
TestConstants: (TestConstants as any) as ContractArtifact,