aboutsummaryrefslogtreecommitdiffstats
path: root/packages/migrations/src/2.0.0/artifacts.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-09-05 06:10:23 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-09-05 06:10:23 +0800
commit9d45d19c80bce5ead92049ab743501f6e40d515a (patch)
treefdf4a77fbb00145e8f301a715ed17b368b47f930 /packages/migrations/src/2.0.0/artifacts.ts
parent9858bb0ce4acb87a34d4129e297e08739bf181d8 (diff)
downloaddexon-0x-contracts-9d45d19c80bce5ead92049ab743501f6e40d515a.tar.gz
dexon-0x-contracts-9d45d19c80bce5ead92049ab743501f6e40d515a.tar.zst
dexon-0x-contracts-9d45d19c80bce5ead92049ab743501f6e40d515a.zip
More small artifacts updates/changes
Diffstat (limited to 'packages/migrations/src/2.0.0/artifacts.ts')
-rw-r--r--packages/migrations/src/2.0.0/artifacts.ts10
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/migrations/src/2.0.0/artifacts.ts b/packages/migrations/src/2.0.0/artifacts.ts
index 65736c001..e96c555d6 100644
--- a/packages/migrations/src/2.0.0/artifacts.ts
+++ b/packages/migrations/src/2.0.0/artifacts.ts
@@ -1,17 +1,25 @@
import { ContractArtifact } from 'ethereum-types';
import * as AssetProxyOwner from '../../artifacts/2.0.0/AssetProxyOwner.json';
+import * as DummyERC20Token from '../../artifacts/2.0.0/DummyERC20Token.json';
+import * as DummyERC721Token from '../../artifacts/2.0.0/DummyERC721Token.json';
import * as ERC20Proxy from '../../artifacts/2.0.0/ERC20Proxy.json';
import * as ERC721Proxy from '../../artifacts/2.0.0/ERC721Proxy.json';
import * as Exchange from '../../artifacts/2.0.0/Exchange.json';
import * as Forwarder from '../../artifacts/2.0.0/Forwarder.json';
import * as OrderValidator from '../../artifacts/2.0.0/OrderValidator.json';
+import * as WETH9 from '../../artifacts/2.0.0/WETH9.json';
+import * as ZRX from '../../artifacts/2.0.0/ZRXToken.json';
export const artifacts = {
+ ZRX: (ZRX as any) as ContractArtifact,
+ DummyERC20Token: (DummyERC20Token as any) as ContractArtifact,
+ DummyERC721Token: (DummyERC721Token as any) as ContractArtifact,
AssetProxyOwner: (AssetProxyOwner as any) as ContractArtifact,
+ Exchange: (Exchange as any) as ContractArtifact,
+ WETH9: (WETH9 as any) as ContractArtifact,
ERC20Proxy: (ERC20Proxy as any) as ContractArtifact,
ERC721Proxy: (ERC721Proxy as any) as ContractArtifact,
- Exchange: (Exchange as any) as ContractArtifact,
Forwarder: (Forwarder as any) as ContractArtifact,
OrderValidator: (OrderValidator as any) as ContractArtifact,
};