aboutsummaryrefslogtreecommitdiffstats
path: root/src/0x.js.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-05-31 18:10:38 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-05-31 18:10:38 +0800
commit454c04583894adbf6dce23f74098d2013aa96e2a (patch)
treeae20d48845eb6b47794f1403059d38ce2c7e4635 /src/0x.js.ts
parentbe13cf127c00c762d03c5eaf17a11c2775701530 (diff)
parent9409e0aba1d1fa62a60c25149ae1b7115de9e2c9 (diff)
downloaddexon-sol-tools-454c04583894adbf6dce23f74098d2013aa96e2a.tar
dexon-sol-tools-454c04583894adbf6dce23f74098d2013aa96e2a.tar.gz
dexon-sol-tools-454c04583894adbf6dce23f74098d2013aa96e2a.tar.bz2
dexon-sol-tools-454c04583894adbf6dce23f74098d2013aa96e2a.tar.lz
dexon-sol-tools-454c04583894adbf6dce23f74098d2013aa96e2a.tar.xz
dexon-sol-tools-454c04583894adbf6dce23f74098d2013aa96e2a.tar.zst
dexon-sol-tools-454c04583894adbf6dce23f74098d2013aa96e2a.zip
Merge branch 'erc20transfer' into fillOrderAsync
Diffstat (limited to 'src/0x.js.ts')
-rw-r--r--src/0x.js.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/0x.js.ts b/src/0x.js.ts
index 47b6679eb..97eb4d126 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';
import {Order} from './types';
import {orderSchema} from "./schemas/signed_order_schema";
@@ -22,6 +23,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.
@@ -122,6 +124,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
@@ -130,6 +133,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