Skip to content

Commit 60085c2

Browse files
committed
grammarly
1 parent 9501f8a commit 60085c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

smart-contracts/cookbook/smart-contracts/deploy-erc20/erc20-remix.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ To create the ERC-20 contract, you can follow the steps below:
6262
- **`allowance(address owner, address spender)`**: Checks how many tokens an address is allowed to spend on behalf of another address.
6363
6464
!!! tip
65-
Use the [OpenZeppelin Contracts Wizard](https://wizard.openzeppelin.com/){target=\_blank} to quickly generate customized smart contracts. Simply configure your contract, copy the generated code, and paste it into Polkadot Remix IDE for deployment. Below is an example of an ERC-20 token contract created with it:
65+
Use the [OpenZeppelin Contracts Wizard](https://wizard.openzeppelin.com/){target=\_blank} to generate customized smart contracts quickly. Simply configure your contract, copy the generated code, and paste it into the Remix IDE for deployment. Below is an example of an ERC-20 token contract created with it:
6666
6767
![Screenshot of the OpenZeppelin Contracts Wizard showing an ERC-20 contract configuration.](/images/smart-contracts/cookbook/smart-contracts/deploy-erc20/erc20-remix-1.webp)
6868
@@ -107,16 +107,16 @@ Once deployed, you can interact with your contract through Remix. Find your cont
107107
108108
2. Click **Approve** to confirm the transaction in the Talisman popup.
109109
110-
3. If the transaction succeeds, you will see the a green check mark in the terminal.
110+
3. If the transaction succeeds, you will see a green check mark in the terminal.
111111
112112
4. You can also call the **balanceOf** function by passing the address of the **mint** call to confirm the new balance.
113113
114114
![](/images/smart-contracts/cookbook/smart-contracts/deploy-erc20/erc20-remix-3.gif)
115115
116116
117-
Other common functions you can use:
117+
Other standard functions you can use:
118118
119119
- **`transfer(address to, uint256 amount)`**: Send tokens to another address.
120120
- **`approve(address spender, uint256 amount)`**: Allow another address to spend your tokens.
121121
122-
Feel free to explore and interact with the contract's other functions using the same approach - selecting the method, providing any required parameters, and confirming the transaction through MetaMask when needed.
122+
Feel free to explore and interact with the contract's other functions using the same approach: select the method, provide any required parameters, and confirm the transaction in MetaMask when needed.

0 commit comments

Comments
 (0)