aboutsummaryrefslogtreecommitdiffstats
path: root/src/contract_wrappers/exchange_wrapper.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/contract_wrappers/exchange_wrapper.ts')
-rw-r--r--src/contract_wrappers/exchange_wrapper.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts
index a08901004..74b8d25c1 100644
--- a/src/contract_wrappers/exchange_wrapper.ts
+++ b/src/contract_wrappers/exchange_wrapper.ts
@@ -543,6 +543,15 @@ export class ExchangeWrapper extends ContractWrapper {
logEventObj.watch(callback);
this._exchangeLogEventObjs.push(logEventObj);
}
+ /**
+ * Returns the ethereum address of the current exchange contract
+ * on the network that the provided web3 instance is connected to
+ * @return The ethereum address of the current exchange contract.
+ */
+ public async getContractAddressAsync(): Promise<string> {
+ const exchangeContract = await this._getExchangeContractAsync();
+ return exchangeContract.address;
+ }
private async _isValidSignatureUsingContractCallAsync(dataHex: string, ecSignature: ECSignature,
signerAddressHex: string): Promise<boolean> {
assert.isHexString('dataHex', dataHex);