diff options
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index 50e0f5d3c..a6eab0fa2 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -609,7 +609,9 @@ export class ExchangeWrapper extends ContractWrapper { this._exchangeLogEventEmitters = []; } /** - * Returns the Ethereum address of the Exchange contract being used. + * Retrieves the Ethereum address of the Exchange contract deployed on the network + * that the user-passed web3 provider is connected to. + * @returns The Ethereum address of the Exchange contract being used. */ public async getContractAddressAsync(): Promise<string> { const exchangeInstance = await this._getExchangeContractAsync(); |