diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2018-06-25 08:36:24 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2018-06-30 08:25:56 +0800 |
commit | 5f0a2953c63c31daa975b587f5c5072b6f7e418c (patch) | |
tree | fa3a7888c9ef78770575e8612a40c323fd561448 /packages/migrations/src/1.0.0/artifacts.ts | |
parent | 78b513c52addc16062419236c24f01bcfe191f3f (diff) | |
download | dexon-sol-tools-5f0a2953c63c31daa975b587f5c5072b6f7e418c.tar dexon-sol-tools-5f0a2953c63c31daa975b587f5c5072b6f7e418c.tar.gz dexon-sol-tools-5f0a2953c63c31daa975b587f5c5072b6f7e418c.tar.bz2 dexon-sol-tools-5f0a2953c63c31daa975b587f5c5072b6f7e418c.tar.lz dexon-sol-tools-5f0a2953c63c31daa975b587f5c5072b6f7e418c.tar.xz dexon-sol-tools-5f0a2953c63c31daa975b587f5c5072b6f7e418c.tar.zst dexon-sol-tools-5f0a2953c63c31daa975b587f5c5072b6f7e418c.zip |
Add Kovan migrations
Diffstat (limited to 'packages/migrations/src/1.0.0/artifacts.ts')
-rw-r--r-- | packages/migrations/src/1.0.0/artifacts.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/migrations/src/1.0.0/artifacts.ts b/packages/migrations/src/1.0.0/artifacts.ts new file mode 100644 index 000000000..d0a9f735a --- /dev/null +++ b/packages/migrations/src/1.0.0/artifacts.ts @@ -0,0 +1,21 @@ +import { ContractArtifact } from '@0xproject/sol-compiler'; + +import * as DummyERC20Token from '../../artifacts/1.0.0/DummyERC20Token.json'; +import * as Exchange from '../../artifacts/1.0.0/Exchange_v1.json'; +import * as MultiSigWalletWithTimeLock from '../../artifacts/1.0.0/MultiSigWalletWithTimeLock.json'; +import * as MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress from '../../artifacts/1.0.0/MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress.json'; +import * as TokenRegistry from '../../artifacts/1.0.0/TokenRegistry.json'; +import * as TokenTransferProxy from '../../artifacts/1.0.0/TokenTransferProxy_v1.json'; +import * as EtherToken from '../../artifacts/1.0.0/WETH9.json'; +import * as ZRX from '../../artifacts/1.0.0/ZRXToken.json'; + +export const artifacts = { + ZRX: (ZRX as any) as ContractArtifact, + DummyERC20Token: (DummyERC20Token as any) as ContractArtifact, + Exchange: (Exchange as any) as ContractArtifact, + EtherToken: (EtherToken as any) as ContractArtifact, + TokenRegistry: (TokenRegistry as any) as ContractArtifact, + TokenTransferProxy: (TokenTransferProxy as any) as ContractArtifact, + MultiSigWalletWithTimeLock: (MultiSigWalletWithTimeLock as any) as ContractArtifact, + MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress: (MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress as any) as ContractArtifact, +}; |