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/0x.js/src/0x.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/0x.js/src/0x.ts')
-rw-r--r-- | packages/0x.js/src/0x.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/src/0x.ts b/packages/0x.js/src/0x.ts index e4965f9a2..7393cc814 100644 --- a/packages/0x.js/src/0x.ts +++ b/packages/0x.js/src/0x.ts @@ -201,7 +201,7 @@ export class ZeroEx { this._web3Wrapper, config.networkId, config.tokenRegistryContractAddress, ); this.etherToken = new EtherTokenWrapper( - this._web3Wrapper, config.networkId, this.token, + this._web3Wrapper, config.networkId, this._abiDecoder, this.token, ); this.orderStateWatcher = new OrderStateWatcher( this._web3Wrapper, this._abiDecoder, this.token, this.exchange, config.orderWatcherConfig, |