Skip to content

Commit

Permalink
Typos CONTRIBUTING.md (#40)
Browse files Browse the repository at this point in the history
Fix common spelling mistake: "receieve" → "receive"
  • Loading branch information
mdqst authored Nov 13, 2024
1 parent ab452a1 commit 19242de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,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`",
)
```
- `func` - A function (or Callable class) that executes the action.
Expand All @@ -69,7 +69,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 19242de

Please sign in to comment.