aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/util/artifacts.ts
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2017-12-13 07:39:29 +0800
committerGitHub <noreply@github.com>2017-12-13 07:39:29 +0800
commit5678196706a63d27fc5b00b5224c8213510e76f0 (patch)
treeb2077b02688fb7dff8272854a4e18f4ff852d086 /packages/contracts/util/artifacts.ts
parent6630b1d8a5658e1a7dcf9a42426ca39c4507f7db (diff)
parent987637abed4a74a3e851c54e93c0164607a5ab6f (diff)
downloaddexon-sol-tools-5678196706a63d27fc5b00b5224c8213510e76f0.tar
dexon-sol-tools-5678196706a63d27fc5b00b5224c8213510e76f0.tar.gz
dexon-sol-tools-5678196706a63d27fc5b00b5224c8213510e76f0.tar.bz2
dexon-sol-tools-5678196706a63d27fc5b00b5224c8213510e76f0.tar.lz
dexon-sol-tools-5678196706a63d27fc5b00b5224c8213510e76f0.tar.xz
dexon-sol-tools-5678196706a63d27fc5b00b5224c8213510e76f0.tar.zst
dexon-sol-tools-5678196706a63d27fc5b00b5224c8213510e76f0.zip
Merge pull request #255 from 0xProject/feature/updateWeth
Update WETH
Diffstat (limited to 'packages/contracts/util/artifacts.ts')
-rw-r--r--packages/contracts/util/artifacts.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/contracts/util/artifacts.ts b/packages/contracts/util/artifacts.ts
index b15c9216f..6b05df78c 100644
--- a/packages/contracts/util/artifacts.ts
+++ b/packages/contracts/util/artifacts.ts
@@ -6,7 +6,9 @@ export class Artifacts {
public Exchange: any;
public ZRXToken: any;
public DummyToken: any;
+ public DummyTokenV2: any;
public EtherToken: any;
+ public EtherTokenV2: any;
public MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress: any;
public MaliciousToken: any;
constructor(artifacts: any) {
@@ -17,7 +19,9 @@ export class Artifacts {
this.Exchange = artifacts.require('Exchange');
this.ZRXToken = artifacts.require('ZRXToken');
this.DummyToken = artifacts.require('DummyToken');
+ this.DummyTokenV2 = artifacts.require('DummyToken_v2');
this.EtherToken = artifacts.require('EtherToken');
+ this.EtherTokenV2 = artifacts.require('EtherToken_v2');
this.MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress = artifacts.require(
'MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress');
this.MaliciousToken = artifacts.require('MaliciousToken');