diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-30 05:51:27 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-30 05:51:27 +0800 |
commit | 919585cd7972bae1667f67c9fa034251f27b14a8 (patch) | |
tree | 3562cb97333bcb42e62ef575fce321f3c1b416f8 /src/0x.js.ts | |
parent | 6cb9bd4426bff5885f3b453d60a6a00f048abb6b (diff) | |
download | dexon-sol-tools-919585cd7972bae1667f67c9fa034251f27b14a8.tar dexon-sol-tools-919585cd7972bae1667f67c9fa034251f27b14a8.tar.gz dexon-sol-tools-919585cd7972bae1667f67c9fa034251f27b14a8.tar.bz2 dexon-sol-tools-919585cd7972bae1667f67c9fa034251f27b14a8.tar.lz dexon-sol-tools-919585cd7972bae1667f67c9fa034251f27b14a8.tar.xz dexon-sol-tools-919585cd7972bae1667f67c9fa034251f27b14a8.tar.zst dexon-sol-tools-919585cd7972bae1667f67c9fa034251f27b14a8.zip |
Add TokenRegistryWrapper and getTokensAsync method
Diffstat (limited to 'src/0x.js.ts')
-rw-r--r-- | src/0x.js.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/0x.js.ts b/src/0x.js.ts index d708a8db6..7e48bc0a5 100644 --- a/src/0x.js.ts +++ b/src/0x.js.ts @@ -11,6 +11,7 @@ import {assert} from './utils/assert'; import findVersions = require('find-versions'); 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 {SolidityTypes, ECSignature, ZeroExError} from './types'; @@ -19,6 +20,7 @@ const MAX_DIGITS_IN_UNSIGNED_256_INT = 78; export class ZeroEx { public web3Wrapper: Web3Wrapper; public exchange: ExchangeWrapper; + public tokenRegistry: TokenRegistryWrapper; /** * Computes the orderHash given the order parameters and returns it as a hex encoded string. */ @@ -132,6 +134,7 @@ export class ZeroEx { constructor(web3: Web3) { this.web3Wrapper = new Web3Wrapper(web3); this.exchange = new ExchangeWrapper(this.web3Wrapper); + this.tokenRegistry = new TokenRegistryWrapper(this.web3Wrapper); } /** * Signs an orderHash and returns it's elliptic curve signature |