diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-30 18:37:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-30 18:37:25 +0800 |
commit | 911ab437b8f9371f70e835f680d799b7c62fb140 (patch) | |
tree | 658094383e06e2b4df944486f7caeb54550007ea /src/0x.js.ts | |
parent | 73ae3df172b1fdb7e6a3f5cbb866b09fb5f9d032 (diff) | |
parent | 02d7f808ab0a38e145c619b360738dc976898d54 (diff) | |
download | dexon-sol-tools-911ab437b8f9371f70e835f680d799b7c62fb140.tar dexon-sol-tools-911ab437b8f9371f70e835f680d799b7c62fb140.tar.gz dexon-sol-tools-911ab437b8f9371f70e835f680d799b7c62fb140.tar.bz2 dexon-sol-tools-911ab437b8f9371f70e835f680d799b7c62fb140.tar.lz dexon-sol-tools-911ab437b8f9371f70e835f680d799b7c62fb140.tar.xz dexon-sol-tools-911ab437b8f9371f70e835f680d799b7c62fb140.tar.zst dexon-sol-tools-911ab437b8f9371f70e835f680d799b7c62fb140.zip |
Merge pull request #24 from 0xProject/tokenRegistry
TokenRegistryWrapper
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 11dbe3058..f3da005f8 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'; @@ -18,6 +19,7 @@ const MAX_DIGITS_IN_UNSIGNED_256_INT = 78; export class ZeroEx { public exchange: ExchangeWrapper; + public tokenRegistry: TokenRegistryWrapper; private web3Wrapper: Web3Wrapper; /** * 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 |