Skip to content

Commit dc22bc0

Browse files
authored
Merge pull request #3376 from ayo-69/patch-2
Fix link to OpenZeppelin Wizard for ERC-20 tokens
2 parents 6834b3f + 507b448 commit dc22bc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/academy/blockchain/solidity-foundry/07-erc20-smart-contracts/04-deploying-your-erc20-token.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The two reasons above, in additions to other small nuances, make it evident that
2222

2323
## OpenZeppelin Wizard
2424

25-
OpenZeppelin's Wizard Contract Creator is a useful tool which allows for developers to deploy contracts on the fly. By this, we mean that by just filling a couple of fields and selecting a few options, we can autogenerate the code necessary to deploy a ERC-20 token to our liking! To get started, head over to [wizard.openzeppelin.com/#erc20](wizard.openzeppelin.com/#erc20) where you will see the following:
25+
OpenZeppelin's Wizard Contract Creator is a useful tool which allows for developers to deploy contracts on the fly. By this, we mean that by just filling a couple of fields and selecting a few options, we can autogenerate the code necessary to deploy a ERC-20 token to our liking! To get started, head over to [wizard.openzeppelin.com/#erc20](https://wizard.openzeppelin.com/#erc20) where you will see the following:
2626

2727
![](https://qizat5l3bwvomkny.public.blob.vercel-storage.com/builders-hub/course-images/smartcontract-foundry/erc20-OpenZeppelin-gz9mc7CErNPx0PLFLwGMq2XBKlKOdE.png)
2828

@@ -33,4 +33,4 @@ Front and center, you will see some Solidity code. At first, it seem as if this
3333

3434
In the above, we've created a new ERC-20 contract named BigRedCoin. Furthermore, this ERC-20 token allocates to the deployer 20000 tokens on initialization and gives the owner full rights over the behavior of the token. Now that we have our ERC-20 token contract customized, how do we actually deploy it?
3535

36-
If you look at the righthand side of the Wizard page, you will see the button Copy to Clipboard. As the name might suggest, this allows us to copy our contract and paste it to a file in our Avalanche Starter Kit, which we can then compile and deploy onto the blockchain!
36+
If you look at the righthand side of the Wizard page, you will see the button Copy to Clipboard. As the name might suggest, this allows us to copy our contract and paste it to a file in our Avalanche Starter Kit, which we can then compile and deploy onto the blockchain!

0 commit comments

Comments
 (0)