aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-10-11 07:04:37 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-10-16 04:38:33 +0800
commit974ec23ecd2a445523e0550c0a7f69329d6959f1 (patch)
tree25ac0cd42c86eb8d6149064880656da340d92719 /packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts
parent68f150eff2c4afeccf7eee43e9f40297f88fc8dd (diff)
downloaddexon-0x-contracts-974ec23ecd2a445523e0550c0a7f69329d6959f1.tar
dexon-0x-contracts-974ec23ecd2a445523e0550c0a7f69329d6959f1.tar.gz
dexon-0x-contracts-974ec23ecd2a445523e0550c0a7f69329d6959f1.tar.bz2
dexon-0x-contracts-974ec23ecd2a445523e0550c0a7f69329d6959f1.tar.lz
dexon-0x-contracts-974ec23ecd2a445523e0550c0a7f69329d6959f1.tar.xz
dexon-0x-contracts-974ec23ecd2a445523e0550c0a7f69329d6959f1.tar.zst
dexon-0x-contracts-974ec23ecd2a445523e0550c0a7f69329d6959f1.zip
Apply various PR feedback
Diffstat (limited to 'packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts')
-rw-r--r--packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts11
1 files changed, 5 insertions, 6 deletions
diff --git a/packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts b/packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts
index b72a77e8b..fe4d0cbda 100644
--- a/packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts
+++ b/packages/contract-wrappers/src/contract_wrappers/forwarder_wrapper.ts
@@ -32,15 +32,14 @@ export class ForwarderWrapper extends ContractWrapper {
* Instantiate ForwarderWrapper
* @param web3Wrapper Web3Wrapper instance to use.
* @param networkId Desired networkId.
- * @param address (Optional) The address of the Exchange contract. If
+ * @param address The address of the Exchange contract. If undefined, will
+ * default to the known address corresponding to the networkId.
+ * @param zrxTokenAddress The address of the ZRXToken contract. If
* undefined, will default to the known address corresponding to the
* networkId.
- * @param zrxTokenAddress (Optional) The address of the ZRXToken contract.
- * If undefined, will default to the known address corresponding to the
+ * @param etherTokenAddress The address of a WETH (Ether token) contract. If
+ * undefined, will default to the known address corresponding to the
* networkId.
- * @param etherTokenAddress (Optional) The address of a WETH (Ether token)
- * contract. If undefined, will default to the known address corresponding
- * to the networkId.
*/
constructor(
web3Wrapper: Web3Wrapper,