diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-30 20:53:25 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-30 20:53:25 +0800 |
commit | 86cdb6cb83078f9f29f473e0ebb8425a2d90f5ec (patch) | |
tree | 45f76be2fa6b4e4f1c48a60c5104bb58f405dd44 /src | |
parent | 2f16c5483569b819b292554efc736b415b43ca19 (diff) | |
download | dexon-sol-tools-86cdb6cb83078f9f29f473e0ebb8425a2d90f5ec.tar dexon-sol-tools-86cdb6cb83078f9f29f473e0ebb8425a2d90f5ec.tar.gz dexon-sol-tools-86cdb6cb83078f9f29f473e0ebb8425a2d90f5ec.tar.bz2 dexon-sol-tools-86cdb6cb83078f9f29f473e0ebb8425a2d90f5ec.tar.lz dexon-sol-tools-86cdb6cb83078f9f29f473e0ebb8425a2d90f5ec.tar.xz dexon-sol-tools-86cdb6cb83078f9f29f473e0ebb8425a2d90f5ec.tar.zst dexon-sol-tools-86cdb6cb83078f9f29f473e0ebb8425a2d90f5ec.zip |
use token instead of erc20
Diffstat (limited to 'src')
-rw-r--r-- | src/0x.js.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/0x.js.ts b/src/0x.js.ts index 96b290439..d231c579e 100644 --- a/src/0x.js.ts +++ b/src/0x.js.ts @@ -21,7 +21,7 @@ const MAX_DIGITS_IN_UNSIGNED_256_INT = 78; export class ZeroEx { public exchange: ExchangeWrapper; public tokenRegistry: TokenRegistryWrapper; - public erc20: TokenWrapper; + public token: TokenWrapper; private web3Wrapper: Web3Wrapper; /** * Computes the orderHash given the order parameters and returns it as a hex encoded string. @@ -137,7 +137,7 @@ export class ZeroEx { this.web3Wrapper = new Web3Wrapper(web3); this.exchange = new ExchangeWrapper(this.web3Wrapper); this.tokenRegistry = new TokenRegistryWrapper(this.web3Wrapper); - this.erc20 = new TokenWrapper(this.web3Wrapper); + this.token = new TokenWrapper(this.web3Wrapper); } /** * Sets a new provider for the web3 instance used by 0x.js @@ -146,7 +146,7 @@ export class ZeroEx { this.web3Wrapper.setProvider(provider); this.exchange.invalidateContractInstance(); this.tokenRegistry.invalidateContractInstance(); - this.erc20.invalidateContractInstances(); + this.token.invalidateContractInstances(); } /** * Signs an orderHash and returns it's elliptic curve signature |