diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-09-08 22:24:07 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-09-08 22:24:07 +0800 |
commit | 217c16027e7f8acdb0909989c4d15314c0eb1a97 (patch) | |
tree | d9eb799dbd3ce39094aa418517c39cbde459dd0c /src/contract_wrappers/token_wrapper.ts | |
parent | be0b9a1d7c9428fc35b3fdf3cd2a730e9bd5a606 (diff) | |
download | dexon-0x-contracts-217c16027e7f8acdb0909989c4d15314c0eb1a97.tar dexon-0x-contracts-217c16027e7f8acdb0909989c4d15314c0eb1a97.tar.gz dexon-0x-contracts-217c16027e7f8acdb0909989c4d15314c0eb1a97.tar.bz2 dexon-0x-contracts-217c16027e7f8acdb0909989c4d15314c0eb1a97.tar.lz dexon-0x-contracts-217c16027e7f8acdb0909989c4d15314c0eb1a97.tar.xz dexon-0x-contracts-217c16027e7f8acdb0909989c4d15314c0eb1a97.tar.zst dexon-0x-contracts-217c16027e7f8acdb0909989c4d15314c0eb1a97.zip |
Replace placeholders with actual coments
Diffstat (limited to 'src/contract_wrappers/token_wrapper.ts')
-rw-r--r-- | src/contract_wrappers/token_wrapper.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/contract_wrappers/token_wrapper.ts b/src/contract_wrappers/token_wrapper.ts index 218427517..bdfdf0c74 100644 --- a/src/contract_wrappers/token_wrapper.ts +++ b/src/contract_wrappers/token_wrapper.ts @@ -40,7 +40,7 @@ export class TokenWrapper extends ContractWrapper { * Retrieves an owner's ERC20 token balance. * @param tokenAddress The hex encoded contract Ethereum address where the ERC20 token is deployed. * @param ownerAddress The hex encoded user Ethereum address whose balance you would like to check. - * @param methodOpts ${FABIOS_COMMENT} + * @param methodOpts Optional arguments this method accepts. * @return The owner's ERC20 token balance in base units. */ public async getBalanceAsync(tokenAddress: string, ownerAddress: string, @@ -108,7 +108,7 @@ export class TokenWrapper extends ContractWrapper { * @param ownerAddress The hex encoded user Ethereum address whose allowance to spenderAddress * you would like to retrieve. * @param spenderAddress The hex encoded user Ethereum address who can spend the allowance you are fetching. - * @param methodOpts ${FABIOS_COMMENT} + * @param methodOpts Optional arguments this method accepts. */ public async getAllowanceAsync(tokenAddress: string, ownerAddress: string, spenderAddress: string, methodOpts?: MethodOpts): Promise<BigNumber.BigNumber> { @@ -126,7 +126,7 @@ export class TokenWrapper extends ContractWrapper { * Retrieves the owner's allowance in baseUnits set to the 0x proxy contract. * @param tokenAddress The hex encoded contract Ethereum address where the ERC20 token is deployed. * @param ownerAddress The hex encoded user Ethereum address whose proxy contract allowance we are retrieving. - * @param methodOpts ${FABIOS_COMMENT} + * @param methodOpts Optional arguments this method accepts. */ public async getProxyAllowanceAsync(tokenAddress: string, ownerAddress: string, methodOpts?: MethodOpts): Promise<BigNumber.BigNumber> { |