From 507b448ea373033c197e1f9f607264ef9490b2b6 Mon Sep 17 00:00:00 2001 From: Zeke <130365393+ayo-69@users.noreply.github.com> Date: Sat, 22 Nov 2025 02:37:13 +0000 Subject: [PATCH] Fix link to OpenZeppelin Wizard for ERC-20 tokens Updated the link to OpenZeppelin Wizard for ERC-20 token deployment. Signed-off-by: Zeke <130365393+ayo-69@users.noreply.github.com> --- .../04-deploying-your-erc20-token.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/academy/blockchain/solidity-foundry/07-erc20-smart-contracts/04-deploying-your-erc20-token.mdx b/content/academy/blockchain/solidity-foundry/07-erc20-smart-contracts/04-deploying-your-erc20-token.mdx index 1126f3f6c7b..225f7aabdf7 100644 --- a/content/academy/blockchain/solidity-foundry/07-erc20-smart-contracts/04-deploying-your-erc20-token.mdx +++ b/content/academy/blockchain/solidity-foundry/07-erc20-smart-contracts/04-deploying-your-erc20-token.mdx @@ -22,7 +22,7 @@ The two reasons above, in additions to other small nuances, make it evident that ## OpenZeppelin Wizard -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: +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: ![](https://qizat5l3bwvomkny.public.blob.vercel-storage.com/builders-hub/course-images/smartcontract-foundry/erc20-OpenZeppelin-gz9mc7CErNPx0PLFLwGMq2XBKlKOdE.png) @@ -33,4 +33,4 @@ Front and center, you will see some Solidity code. At first, it seem as if this 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? -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! \ No newline at end of file +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!