Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-agarwal-coinbase committed Sep 25, 2024
1 parent f999ed5 commit d291dfd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/coinbase/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ export class Wallet {
* @param options.symbol - The symbol of the ERC20 token.
* @param options.totalSupply - The total supply of the ERC20 token.
* @returns A Promise that resolves to the deployed SmartContract object.
* @throws {APIError} If the private key is not loaded when not using server signer.
* @throws {Error} If the private key is not loaded when not using server signer.
*/
public async deployToken(options: CreateERC20Options): Promise<SmartContract> {
return (await this.getDefaultAddress()).deployToken(options);
Expand All @@ -793,7 +793,7 @@ export class Wallet {
* @param options.symbol - The symbol of the ERC721 token.
* @param options.baseURI - The base URI of the ERC721 token.
* @returns A Promise that resolves to the deployed SmartContract object.
* @throws {APIError} If the private key is not loaded when not using server signer.
* @throws {Error} If the private key is not loaded when not using server signer.
*/
public async deployNFT(options: CreateERC721Options): Promise<SmartContract> {
return (await this.getDefaultAddress()).deployNFT(options);
Expand All @@ -807,7 +807,7 @@ export class Wallet {
* @param options.symbol - The symbol of the ERC1155 token.
* @param options.baseURI - The base URI of the ERC1155 token.
* @returns A Promise that resolves to the deployed SmartContract object.
* @throws {APIError} If the private key is not loaded when not using server signer.
* @throws {Error} If the private key is not loaded when not using server signer.
*/
public async deployMultiToken(options: CreateERC1155Options): Promise<SmartContract> {
return (await this.getDefaultAddress()).deployMultiToken(options);
Expand Down

0 comments on commit d291dfd

Please sign in to comment.