diff options
author | Leonid <logvinov.leon@gmail.com> | 2018-02-06 02:31:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-06 02:31:37 +0800 |
commit | 3565e96f42ce494784bf95172e0d30efa5ffd9cf (patch) | |
tree | faa126d27025d6c660961cf7b3b925c5ef3b2a8b /packages/0x.js/src/contract_wrappers/ether_token_wrapper.ts | |
parent | 1f4cbb747976560df0e67e703311db8f21f75604 (diff) | |
parent | 2c7db23022d429758dd01d8d63afdf50d19013ba (diff) | |
download | dexon-sol-tools-3565e96f42ce494784bf95172e0d30efa5ffd9cf.tar.gz dexon-sol-tools-3565e96f42ce494784bf95172e0d30efa5ffd9cf.tar.zst dexon-sol-tools-3565e96f42ce494784bf95172e0d30efa5ffd9cf.zip |
Merge branch 'development' into fix/abi_decoder_colision
Diffstat (limited to 'packages/0x.js/src/contract_wrappers/ether_token_wrapper.ts')
-rw-r--r-- | packages/0x.js/src/contract_wrappers/ether_token_wrapper.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/0x.js/src/contract_wrappers/ether_token_wrapper.ts b/packages/0x.js/src/contract_wrappers/ether_token_wrapper.ts index cbafcfe94..32c9ae6a9 100644 --- a/packages/0x.js/src/contract_wrappers/ether_token_wrapper.ts +++ b/packages/0x.js/src/contract_wrappers/ether_token_wrapper.ts @@ -162,6 +162,19 @@ export class EtherTokenWrapper extends ContractWrapper { public _unsubscribeAll(): void { super._unsubscribeAll(); } + /** + * Retrieves the Ethereum address of the EtherToken contract deployed on the network + * that the user-passed web3 provider is connected to. If it's not Kovan, Ropsten, Rinkeby, Mainnet or TestRPC + * (networkId: 50), it will return undefined (e.g a private network). + * @returns The Ethereum address of the EtherToken contract or undefined. + */ + public getContractAddressIfExists(): string | undefined { + const networkSpecificArtifact = artifacts.EtherTokenArtifact.networks[this._networkId]; + const contractAddressIfExists = _.isUndefined(networkSpecificArtifact) + ? undefined + : networkSpecificArtifact.address; + return contractAddressIfExists; + } private _invalidateContractInstance(): void { this._unsubscribeAll(); this._etherTokenContractsByAddress = {}; |