aboutsummaryrefslogtreecommitdiffstats
path: root/src/0x.js.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-05-30 15:52:31 +0800
committerFabio Berger <me@fabioberger.com>2017-05-30 15:52:31 +0800
commit6686443317dcb30f6737d695d2e8d298a942eb8e (patch)
tree5ec8a6a49d5b343f9e9b968ffbdc314429a8d48e /src/0x.js.ts
parentf3d5690d56c3e4c7243f72049c98cfde799413af (diff)
downloaddexon-sol-tools-6686443317dcb30f6737d695d2e8d298a942eb8e.tar
dexon-sol-tools-6686443317dcb30f6737d695d2e8d298a942eb8e.tar.gz
dexon-sol-tools-6686443317dcb30f6737d695d2e8d298a942eb8e.tar.bz2
dexon-sol-tools-6686443317dcb30f6737d695d2e8d298a942eb8e.tar.lz
dexon-sol-tools-6686443317dcb30f6737d695d2e8d298a942eb8e.tar.xz
dexon-sol-tools-6686443317dcb30f6737d695d2e8d298a942eb8e.tar.zst
dexon-sol-tools-6686443317dcb30f6737d695d2e8d298a942eb8e.zip
Implement ERC20Wrapper and it's first method getBalanceAsync
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 7e48bc0a5..7932559fb 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 {ERC20Wrapper} from './contract_wrappers/erc20_wrapper';
import {SolidityTypes, ECSignature, ZeroExError} from './types';
const MAX_DIGITS_IN_UNSIGNED_256_INT = 78;
@@ -21,6 +22,7 @@ export class ZeroEx {
public web3Wrapper: Web3Wrapper;
public exchange: ExchangeWrapper;
public tokenRegistry: TokenRegistryWrapper;
+ public erc20: ERC20Wrapper;
/**
* 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.erc20 = new ERC20Wrapper(this.web3Wrapper);
}
/**
* Signs an orderHash and returns it's elliptic curve signature