diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-09-06 00:45:20 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-09-06 00:45:20 +0800 |
commit | a7b2131db77b72379f0d57eaff694d5a925191cd (patch) | |
tree | f7c5d443f4bcbd9ee702c8897d1c60a7b6056510 /src/contract_wrappers/token_wrapper.ts | |
parent | f0572679557ebdc6956d079ea2b1f54fd52c2c67 (diff) | |
download | dexon-sol-tools-a7b2131db77b72379f0d57eaff694d5a925191cd.tar dexon-sol-tools-a7b2131db77b72379f0d57eaff694d5a925191cd.tar.gz dexon-sol-tools-a7b2131db77b72379f0d57eaff694d5a925191cd.tar.bz2 dexon-sol-tools-a7b2131db77b72379f0d57eaff694d5a925191cd.tar.lz dexon-sol-tools-a7b2131db77b72379f0d57eaff694d5a925191cd.tar.xz dexon-sol-tools-a7b2131db77b72379f0d57eaff694d5a925191cd.tar.zst dexon-sol-tools-a7b2131db77b72379f0d57eaff694d5a925191cd.zip |
Decode logs args in awaitTransactionMinedAsync
Diffstat (limited to 'src/contract_wrappers/token_wrapper.ts')
-rw-r--r-- | src/contract_wrappers/token_wrapper.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/contract_wrappers/token_wrapper.ts b/src/contract_wrappers/token_wrapper.ts index db1ce22b2..f1f967286 100644 --- a/src/contract_wrappers/token_wrapper.ts +++ b/src/contract_wrappers/token_wrapper.ts @@ -7,8 +7,7 @@ import {utils} from '../utils/utils'; import {eventUtils} from '../utils/event_utils'; import {constants} from '../utils/constants'; import {ContractWrapper} from './contract_wrapper'; -import * as TokenArtifacts from '../artifacts/Token.json'; -import * as TokenTransferProxyArtifacts from '../artifacts/TokenTransferProxy.json'; +import {artifacts} from '../artifacts'; import { TokenContract, ZeroExError, @@ -286,7 +285,7 @@ export class TokenWrapper extends ContractWrapper { return tokenContract; } const contractInstance = await this._instantiateContractIfExistsAsync<TokenContract>( - TokenArtifacts as any as Artifact, tokenAddress, + artifacts.TokenArtifact, tokenAddress, ); tokenContract = contractInstance as TokenContract; this._tokenContractsByAddress[tokenAddress] = tokenContract; @@ -296,7 +295,7 @@ export class TokenWrapper extends ContractWrapper { const networkIdIfExists = await this._web3Wrapper.getNetworkIdIfExistsAsync(); const proxyNetworkConfigsIfExists = _.isUndefined(networkIdIfExists) ? undefined : - (TokenTransferProxyArtifacts as any).networks[networkIdIfExists]; + artifacts.TokenTransferProxyArtifact.networks[networkIdIfExists]; if (_.isUndefined(proxyNetworkConfigsIfExists)) { throw new Error(ZeroExError.ContractNotDeployedOnNetwork); } |