diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-12-20 22:33:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-20 22:33:15 +0800 |
commit | e88b01ed5b5253d07eb9b51d48c895995eaec988 (patch) | |
tree | c6a1561dd9db2f02d52a0fb2af879aad94bfbd98 /packages/contracts/util/artifacts.ts | |
parent | 972e1675f6490bc10e8d9fd64cce2f7945cd4840 (diff) | |
parent | 3e3587c2811ed2078aa821490f446c24c9ab5eec (diff) | |
download | dexon-sol-tools-e88b01ed5b5253d07eb9b51d48c895995eaec988.tar dexon-sol-tools-e88b01ed5b5253d07eb9b51d48c895995eaec988.tar.gz dexon-sol-tools-e88b01ed5b5253d07eb9b51d48c895995eaec988.tar.bz2 dexon-sol-tools-e88b01ed5b5253d07eb9b51d48c895995eaec988.tar.lz dexon-sol-tools-e88b01ed5b5253d07eb9b51d48c895995eaec988.tar.xz dexon-sol-tools-e88b01ed5b5253d07eb9b51d48c895995eaec988.tar.zst dexon-sol-tools-e88b01ed5b5253d07eb9b51d48c895995eaec988.zip |
Merge pull request #277 from 0xProject/feature/weth-events
Add etherToken.getLogsAsync and etherToken.subscribe with tests
Diffstat (limited to 'packages/contracts/util/artifacts.ts')
-rw-r--r-- | packages/contracts/util/artifacts.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/contracts/util/artifacts.ts b/packages/contracts/util/artifacts.ts index 6b05df78c..14acd32a1 100644 --- a/packages/contracts/util/artifacts.ts +++ b/packages/contracts/util/artifacts.ts @@ -8,7 +8,6 @@ export class Artifacts { public DummyToken: any; public DummyTokenV2: any; public EtherToken: any; - public EtherTokenV2: any; public MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress: any; public MaliciousToken: any; constructor(artifacts: any) { @@ -20,8 +19,7 @@ export class Artifacts { 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.EtherToken = artifacts.require('WETH9'); this.MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress = artifacts.require( 'MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress'); this.MaliciousToken = artifacts.require('MaliciousToken'); |