aboutsummaryrefslogtreecommitdiffstats
path: root/packages/migrations/src/2.0.0-testnet/artifacts.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-09-05 04:47:01 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-09-05 04:47:28 +0800
commite456332da71f1ed6c6799fabe6c635985ec2ce9d (patch)
tree72c22d078674ecdb4646bd9a5e8d7b8108c78ad3 /packages/migrations/src/2.0.0-testnet/artifacts.ts
parent4ed84c5dc5e32452d94d96be2f019bf453e9b6ea (diff)
downloaddexon-0x-contracts-e456332da71f1ed6c6799fabe6c635985ec2ce9d.tar
dexon-0x-contracts-e456332da71f1ed6c6799fabe6c635985ec2ce9d.tar.gz
dexon-0x-contracts-e456332da71f1ed6c6799fabe6c635985ec2ce9d.tar.bz2
dexon-0x-contracts-e456332da71f1ed6c6799fabe6c635985ec2ce9d.tar.lz
dexon-0x-contracts-e456332da71f1ed6c6799fabe6c635985ec2ce9d.tar.xz
dexon-0x-contracts-e456332da71f1ed6c6799fabe6c635985ec2ce9d.tar.zst
dexon-0x-contracts-e456332da71f1ed6c6799fabe6c635985ec2ce9d.zip
Rename and update some artifact locations
Diffstat (limited to 'packages/migrations/src/2.0.0-testnet/artifacts.ts')
-rw-r--r--packages/migrations/src/2.0.0-testnet/artifacts.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/migrations/src/2.0.0-testnet/artifacts.ts b/packages/migrations/src/2.0.0-testnet/artifacts.ts
new file mode 100644
index 000000000..f1c6ecd88
--- /dev/null
+++ b/packages/migrations/src/2.0.0-testnet/artifacts.ts
@@ -0,0 +1,23 @@
+import { ContractArtifact } from 'ethereum-types';
+
+import * as AssetProxyOwner from '../../artifacts/2.0.0-testnet/AssetProxyOwner.json';
+import * as DummyERC20Token from '../../artifacts/2.0.0-testnet/DummyERC20Token.json';
+import * as DummyERC721Token from '../../artifacts/2.0.0-testnet/DummyERC721Token.json';
+import * as ERC20Proxy from '../../artifacts/2.0.0-testnet/ERC20Proxy.json';
+import * as ERC721Proxy from '../../artifacts/2.0.0-testnet/ERC721Proxy.json';
+import * as Exchange from '../../artifacts/2.0.0-testnet/Exchange.json';
+import * as Forwarder from '../../artifacts/2.0.0-testnet/Forwarder.json';
+import * as OrderValidator from '../../artifacts/2.0.0-testnet/OrderValidator.json';
+import * as ZRXToken from '../../artifacts/2.0.0-testnet/ZRXToken.json';
+
+export const artifacts = {
+ AssetProxyOwner: (AssetProxyOwner as any) as ContractArtifact,
+ Exchange: (Exchange as any) as ContractArtifact,
+ ERC20Proxy: (ERC20Proxy as any) as ContractArtifact,
+ ERC721Proxy: (ERC721Proxy as any) as ContractArtifact,
+ DummyERC721Token: (DummyERC721Token as any) as ContractArtifact,
+ DummyERC20Token: (DummyERC20Token as any) as ContractArtifact,
+ Forwarder: (Forwarder as any) as ContractArtifact,
+ OrderValidator: (OrderValidator as any) as ContractArtifact,
+ ZRX: (ZRXToken as any) as ContractArtifact,
+};