Skip to content

Commit

Permalink
Address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-agarwal-coinbase committed Sep 24, 2024
1 parent da85974 commit 2cf30df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/coinbase/address/wallet_address.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ export class WalletAddress extends Address {
* @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 {Error} If the private key is not loaded when not using server signer.
* @throws {APIError} If the private key is not loaded when not using server signer.
*/
private async createERC721(options: CreateERC721Options): Promise<SmartContract> {
const resp = await Coinbase.apiClients.smartContract!.createSmartContract(
Expand Down
2 changes: 1 addition & 1 deletion src/coinbase/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,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 {Error} If the private key is not loaded when not using server signer.
* @throws {APIError} 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 Down

0 comments on commit 2cf30df

Please sign in to comment.