From c0f59dce087e5c6d6e8ebac28dee29a828dc04e7 Mon Sep 17 00:00:00 2001 From: Lucas Leclerc Date: Sun, 19 May 2024 14:08:26 +0200 Subject: [PATCH] feat(p2p): add explanations to step 2 --- p2p/5.Create_an_ERC-20/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/p2p/5.Create_an_ERC-20/README.md b/p2p/5.Create_an_ERC-20/README.md index e45d5e97..7f5f9ec9 100644 --- a/p2p/5.Create_an_ERC-20/README.md +++ b/p2p/5.Create_an_ERC-20/README.md @@ -69,6 +69,7 @@ In this step, you will create the variables, the mappings and the constructor ne - Initialize `_totalSupply` in the [constructor](https://docs.soliditylang.org/en/v0.8.21/contracts.html#constructor) of the contract. > ⚠️ Don't forget to assign `_totalSupply` to a wallet and to emit an event +> All the events you need to emit are already defined in the [interface](./utils/IERC20.sol). Find the right one. ### 📚 **Documentation**: