diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-31 16:48:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-31 16:48:27 +0800 |
commit | 9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda (patch) | |
tree | b69fc3640d5a0718c7f2612ac12961ef3f9c7714 /src/0x.js.ts | |
parent | 6ea2c00099d5896c5ab53c3ddda14491a7dc918b (diff) | |
parent | 2acdc627e2eaa1d562de6243045c701caa9468c8 (diff) | |
download | dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.tar dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.tar.gz dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.tar.bz2 dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.tar.lz dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.tar.xz dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.tar.zst dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.zip |
Merge pull request #26 from 0xProject/erc20Wrapper
Implement TokenWrapper functions & tests
Diffstat (limited to 'src/0x.js.ts')
-rw-r--r-- | src/0x.js.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/0x.js.ts b/src/0x.js.ts index 69c0cc567..d231c579e 100644 --- a/src/0x.js.ts +++ b/src/0x.js.ts @@ -13,6 +13,7 @@ import compareVersions = require('compare-versions'); import {ExchangeWrapper} from './contract_wrappers/exchange_wrapper'; import {TokenRegistryWrapper} from './contract_wrappers/token_registry_wrapper'; import {ecSignatureSchema} from './schemas/ec_signature_schema'; +import {TokenWrapper} from './contract_wrappers/token_wrapper'; import {SolidityTypes, ECSignature, ZeroExError} from './types'; const MAX_DIGITS_IN_UNSIGNED_256_INT = 78; @@ -20,6 +21,7 @@ const MAX_DIGITS_IN_UNSIGNED_256_INT = 78; export class ZeroEx { public exchange: ExchangeWrapper; public tokenRegistry: TokenRegistryWrapper; + public token: TokenWrapper; private web3Wrapper: Web3Wrapper; /** * Computes the orderHash given the order parameters and returns it as a hex encoded string. @@ -135,6 +137,7 @@ export class ZeroEx { this.web3Wrapper = new Web3Wrapper(web3); this.exchange = new ExchangeWrapper(this.web3Wrapper); this.tokenRegistry = new TokenRegistryWrapper(this.web3Wrapper); + this.token = new TokenWrapper(this.web3Wrapper); } /** * Sets a new provider for the web3 instance used by 0x.js @@ -143,6 +146,7 @@ export class ZeroEx { this.web3Wrapper.setProvider(provider); this.exchange.invalidateContractInstance(); this.tokenRegistry.invalidateContractInstance(); + this.token.invalidateContractInstances(); } /** * Signs an orderHash and returns it's elliptic curve signature |