Learn to create your own fungible token on Ethereum following the ERC-20 standard. This is the foundation for creating cryptocurrencies, utility tokens, and governance tokens.
Initialize a new Hardhat project and install dependencies.
mkdir my-token && cd my-token
npm init -y
npm install --save-dev hardhat @nomicfoundation/hardhat-toolbox
npm install @openzeppelin/contracts
npx hardhat initSign up to save your progress and earn 50 points upon completion.