diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-19 21:15:14 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-20 21:01:59 +0800 |
commit | 613fada49f9d168fb949a370b884367f99deb401 (patch) | |
tree | 693354e8edb716a0a35e0a39e79267288c0b782a /packages/0x.js/src/0x.ts | |
parent | b603197ae837dca86d712760f9b18f626628096a (diff) | |
download | dexon-sol-tools-613fada49f9d168fb949a370b884367f99deb401.tar dexon-sol-tools-613fada49f9d168fb949a370b884367f99deb401.tar.gz dexon-sol-tools-613fada49f9d168fb949a370b884367f99deb401.tar.bz2 dexon-sol-tools-613fada49f9d168fb949a370b884367f99deb401.tar.lz dexon-sol-tools-613fada49f9d168fb949a370b884367f99deb401.tar.xz dexon-sol-tools-613fada49f9d168fb949a370b884367f99deb401.tar.zst dexon-sol-tools-613fada49f9d168fb949a370b884367f99deb401.zip |
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, |