Skip to content

Commit

Permalink
Typos Update mint_nft.py (#41)
Browse files Browse the repository at this point in the history
The word "receieve" has been changed to "receive" to ensure consistency and proper spelling.
  • Loading branch information
mdqst authored Nov 13, 2024
1 parent 19242de commit 90a8140
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cdp-agentkit-core/cdp_agentkit_core/actions/mint_nft.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class MintNftInput(BaseModel):
)
destination: str = Field(
...,
description="The destination address that will receieve the NFT onchain, e.g. `0x036CbD53842c5426634e7929541eC2318f3dCF7e`",
description="The destination address that will receive the NFT onchain, e.g. `0x036CbD53842c5426634e7929541eC2318f3dCF7e`",
)


Expand All @@ -28,7 +28,7 @@ def mint_nft(wallet: Wallet, contract_address: str, destination: str) -> str:
Args:
wallet (Wallet): The wallet to trade the asset from.
contract_address (str): The contract address of the NFT (ERC-721) to mint, e.g. `0x036CbD53842c5426634e7929541eC2318f3dCF7e`.
destination (str): The destination address that will receieve the NFT onchain, e.g. `0x036CbD53842c5426634e7929541eC2318f3dCF7e`.
destination (str): The destination address that will receive the NFT onchain, e.g. `0x036CbD53842c5426634e7929541eC2318f3dCF7e`.
Returns:
str: A message containing the NFT mint details.
Expand Down

0 comments on commit 90a8140

Please sign in to comment.