diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-31 16:48:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-31 16:48:27 +0800 |
commit | 9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda (patch) | |
tree | b69fc3640d5a0718c7f2612ac12961ef3f9c7714 /src | |
parent | 6ea2c00099d5896c5ab53c3ddda14491a7dc918b (diff) | |
parent | 2acdc627e2eaa1d562de6243045c701caa9468c8 (diff) | |
download | dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.tar dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.tar.gz dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.tar.bz2 dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.tar.lz dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.tar.xz dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.tar.zst dexon-sol-tools-9364c5647ff5518aaa2b3fcd133a9e6c47ec0eda.zip |
Merge pull request #26 from 0xProject/erc20Wrapper
Implement TokenWrapper functions & tests
Diffstat (limited to 'src')
-rw-r--r-- | src/0x.js.ts | 4 | ||||
-rw-r--r-- | src/contract_wrappers/token_wrapper.ts | 93 | ||||
-rw-r--r-- | src/types.ts | 16 | ||||
-rw-r--r-- | src/utils/constants.ts | 1 |
4 files changed, 114 insertions, 0 deletions
diff --git a/src/0x.js.ts b/src/0x.js.ts index 69c0cc567..d231c579e 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'; const MAX_DIGITS_IN_UNSIGNED_256_INT = 78; @@ -20,6 +21,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. @@ -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.token = new TokenWrapper(this.web3Wrapper); } /** * Sets a new provider for the web3 instance used by 0x.js @@ -143,6 +146,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 diff --git a/src/contract_wrappers/token_wrapper.ts b/src/contract_wrappers/token_wrapper.ts new file mode 100644 index 000000000..35e008905 --- /dev/null +++ b/src/contract_wrappers/token_wrapper.ts @@ -0,0 +1,93 @@ +import * as _ from 'lodash'; +import * as BigNumber from 'bignumber.js'; +import {Web3Wrapper} from '../web3_wrapper'; +import {assert} from '../utils/assert'; +import {constants} from '../utils/constants'; +import {ContractWrapper} from './contract_wrapper'; +import * as TokenArtifacts from '../artifacts/Token.json'; +import * as ProxyArtifacts from '../artifacts/Proxy.json'; +import {TokenContract, ZeroExError} from '../types'; + +const ALLOWANCE_TO_ZERO_GAS_AMOUNT = 45730; + +export class TokenWrapper extends ContractWrapper { + private tokenContractsByAddress: {[address: string]: TokenContract}; + constructor(web3Wrapper: Web3Wrapper) { + super(web3Wrapper); + this.tokenContractsByAddress = {}; + } + public invalidateContractInstances() { + this.tokenContractsByAddress = {}; + } + /** + * Returns an owner's ERC20 token balance. + */ + public async getBalanceAsync(tokenAddress: string, ownerAddress: string): Promise<BigNumber.BigNumber> { + assert.isETHAddressHex('ownerAddress', ownerAddress); + assert.isETHAddressHex('tokenAddress', tokenAddress); + + const tokenContract = await this.getTokenContractAsync(tokenAddress); + let balance = await tokenContract.balanceOf.call(ownerAddress); + // The BigNumber instance returned by Web3 is of a much older version then our own, we therefore + // should always re-instantiate the returned BigNumber after retrieval. + balance = new BigNumber(balance); + return balance; + } + /** + * Retrieves the allowance in baseUnits of the ERC20 token set to the 0x proxy contract + * by an owner address. + */ + public async getProxyAllowanceAsync(tokenAddress: string, ownerAddress: string) { + assert.isETHAddressHex('ownerAddress', ownerAddress); + assert.isETHAddressHex('tokenAddress', tokenAddress); + + const tokenContract = await this.getTokenContractAsync(tokenAddress); + const proxyAddress = await this.getProxyAddressAsync(); + let allowanceInBaseUnits = await tokenContract.allowance.call(ownerAddress, proxyAddress); + allowanceInBaseUnits = new BigNumber(allowanceInBaseUnits); + return allowanceInBaseUnits; + } + /** + * Sets the 0x proxy contract's allowance to a specified number of a tokens' baseUnits on behalf + * of an owner address. + */ + public async setProxyAllowanceAsync(tokenAddress: string, ownerAddress: string, + amountInBaseUnits: BigNumber.BigNumber) { + assert.isETHAddressHex('ownerAddress', ownerAddress); + assert.isETHAddressHex('tokenAddress', tokenAddress); + assert.isBigNumber('amountInBaseUnits', amountInBaseUnits); + + const tokenContract = await this.getTokenContractAsync(tokenAddress); + const proxyAddress = await this.getProxyAddressAsync(); + // Hack: for some reason default estimated gas amount causes `base fee exceeds gas limit` exception + // on testrpc. Probably related to https://github.com/ethereumjs/testrpc/issues/294 + // TODO: Debug issue in testrpc and submit a PR, then remove this hack + const networkIdIfExists = await this.web3Wrapper.getNetworkIdIfExistsAsync(); + const gas = networkIdIfExists === constants.TESTRPC_NETWORK_ID ? ALLOWANCE_TO_ZERO_GAS_AMOUNT : undefined; + await tokenContract.approve(proxyAddress, amountInBaseUnits, { + from: ownerAddress, + gas, + }); + } + private async getTokenContractAsync(tokenAddress: string): Promise<TokenContract> { + let tokenContract = this.tokenContractsByAddress[tokenAddress]; + if (!_.isUndefined(tokenContract)) { + return tokenContract; + } + const contractInstance = await this.instantiateContractIfExistsAsync((TokenArtifacts as any), tokenAddress); + tokenContract = contractInstance as TokenContract; + this.tokenContractsByAddress[tokenAddress] = tokenContract; + return tokenContract; + } + private async getProxyAddressAsync() { + const networkIdIfExists = await this.web3Wrapper.getNetworkIdIfExistsAsync(); + const proxyNetworkConfigsIfExists = _.isUndefined(networkIdIfExists) ? + undefined : + (ProxyArtifacts as any).networks[networkIdIfExists]; + if (_.isUndefined(proxyNetworkConfigsIfExists)) { + throw new Error(ZeroExError.CONTRACT_NOT_DEPLOYED_ON_NETWORK); + } + const proxyAddress = proxyNetworkConfigsIfExists.address; + return proxyAddress; + } +} diff --git a/src/types.ts b/src/types.ts index 6fce95706..3619c800f 100644 --- a/src/types.ts +++ b/src/types.ts @@ -14,6 +14,7 @@ export const ZeroExError = strEnum([ 'UNHANDLED_ERROR', 'USER_HAS_NO_ASSOCIATED_ADDRESSES', 'INVALID_SIGNATURE', + 'CONTRACT_NOT_DEPLOYED_ON_NETWORK', ]); export type ZeroExError = keyof typeof ZeroExError; @@ -30,6 +31,16 @@ export interface ExchangeContract { isValidSignature: any; } +export interface TokenContract { + balanceOf: { + call: (address: string) => Promise<BigNumber.BigNumber>; + }; + allowance: { + call: (ownerAddress: string, allowedAddress: string) => Promise<BigNumber.BigNumber>; + }; + approve: (proxyAddress: string, amountInBaseUnits: BigNumber.BigNumber, txOpts: TxOpts) => void; +} + export interface TokenRegistryContract { getTokenMetaData: { call: (address: string) => Promise<TokenMetadata>; @@ -55,3 +66,8 @@ export interface Token { decimals: number; url: string; }; + +export interface TxOpts { + from: string; + gas?: number; +}; diff --git a/src/utils/constants.ts b/src/utils/constants.ts index ec2fe744a..5a5ba0e0a 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -1,3 +1,4 @@ export const constants = { NULL_ADDRESS: '0x0000000000000000000000000000000000000000', + TESTRPC_NETWORK_ID: 50, }; |