aboutsummaryrefslogtreecommitdiffstats
path: root/src/0x.js.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-05-30 18:37:45 +0800
committerFabio Berger <me@fabioberger.com>2017-05-30 18:37:45 +0800
commite8a52ce1da454ab3a30b6f7d314aa85cf9534a05 (patch)
tree530fb9f1d2173d19b76b96ae48a6cff90bdc9925 /src/0x.js.ts
parentd15002a1109ea00f4d92c7ae6259b5b657f5e4b3 (diff)
parent911ab437b8f9371f70e835f680d799b7c62fb140 (diff)
downloaddexon-sol-tools-e8a52ce1da454ab3a30b6f7d314aa85cf9534a05.tar
dexon-sol-tools-e8a52ce1da454ab3a30b6f7d314aa85cf9534a05.tar.gz
dexon-sol-tools-e8a52ce1da454ab3a30b6f7d314aa85cf9534a05.tar.bz2
dexon-sol-tools-e8a52ce1da454ab3a30b6f7d314aa85cf9534a05.tar.lz
dexon-sol-tools-e8a52ce1da454ab3a30b6f7d314aa85cf9534a05.tar.xz
dexon-sol-tools-e8a52ce1da454ab3a30b6f7d314aa85cf9534a05.tar.zst
dexon-sol-tools-e8a52ce1da454ab3a30b6f7d314aa85cf9534a05.zip
Merge branch 'master' into dontReinstantiateContractInstances
Diffstat (limited to 'src/0x.js.ts')
-rw-r--r--src/0x.js.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/0x.js.ts b/src/0x.js.ts
index 4b7edc0e9..3dfdfbfcd 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);
}
/**
* Sets a new provider for the web3 instance used by 0x.js internally and invalidates any instantiated