Awesome
ERC20 101
Introduction
Welcome! This is an automated workshop that will explain how to deploy and ERC20 token, and customize it to perform specific functions. It is aimed at developpers that have never written code in Solidity, but who understand its syntax.
How to work on this TD
Introduction
The TD has two components:
- An ERC20 token, ticker TD-ERC20-101, that is used to keep track of points
- An evaluator contract, that is able to mint and distribute TD-ERC20-101 points
Your objective is to gather as many TD-ERC20-101 points as possible. Please note :
- The 'transfer' function of TD-ERC20-101 has been disabled to encourage you to finish the TD with only one address
- You can answer the various questions of this workshop with different ERC20 contracts. However, an evaluated address has only one evaluated ERC20 contract at a time. To change the evaluated ERC20 contract associated with your address, call
submitExercice()
with that specific address. - In order to receive points, you will have to do execute code in
Evaluator.sol
such that the functionTDERC20.distributeTokens(msg.sender, n);
is triggered, and distributes n points. - This repo contains an interface
IExerciceSolution.sol
. Your ERC20 contract will have to conform to this interface in order to validate the exercice; that is, your contract needs to implement all the functions described inIExerciceSolution.sol
. - A high level description of what is expected for each exercice is in this readme. A low level description of what is expected can be inferred by reading the code in
Evaluator.sol
. - The Evaluator contract sometimes needs to make payments to buy your tokens. Make sure he has enough ETH to do so! If not, you can send ETH directly to the contract.
Getting to work
- Clone the repo on your machine
- Install the required packages
npm i
- Register for an infura API key
- Register for an etherscan API key
- Create a
.env
file that contains a mnemonic phrase for deployment, an infura API key and an Etherscan API key. - Test that you are able to connect to the Sepolia network with
npx hardhat console --network sepolia
- To deploy a contract, configure a script in the scripts folder. Look at the way the TD is deployed and try to iterate
- Test your deployment locallly with
npx hardhat run scripts/your-script.js
- Deploy on Sepolia
npx hardhat run scripts/your-script.js --network sepolia
Points list
Setting up
- Create a git repository and share it with the teacher
- Install Hardhat and create an empty hardhat project (2 pts). Create an infura API key to be able to deploy to the Sepolia testnet These points will be attributed manually if you do not manage to have your contract interact with the evaluator, or automatically in the first question.
ERC20 basics
- Call
ex1_getTickerAndSupply()
in the evaluator contract to receive a random ticker for your ERC20 token, as well as an initial token supply (1 pt). You can read your assigned ticker and supply inEvaluator.sol
by calling gettersreadTicker()
andreadSupply()
- Create an ERC20 token contract with the proper ticker and supply (2 pt)
- Deploy it to the Sepolia testnet (1 pts)
- Call
submitExercice()
in the Evaluator to configure the contract you want evaluated (Previous 5 points are attributed at that step) - Call
ex2_testErc20TickerAndSupply()
in the evaluator to receive your points (2 pts)
Distributing and selling tokens
- Create a
getToken()
function in your contract, deploy it, and call theex3_testGetToken()
function that distributes token to the caller (2 pts). - Create a
buyToken()
function in your contract, deploy it, and call theex4_testBuyToken()
function that lets the caller send an arbitrary amount of ETH, and distributes a proportionate amount of token (2 pts).
Creating an ICO allow list
- Create a customer allow listing function. Only allow listed users should be able to call
getToken()
- Call
ex5_testDenyListing()
in the evaluator to show he can't buy tokens usingbuyTokens()
(1 pt) - Allow the evaluator to buy tokens
- Call
ex6_testAllowListing()
in the evaluator to show he can now buy tokensbuyTokens()
(2 pt)
Creating multi tier allow list
- Create a customer multi tier listing function. Only allow listed users should be able to call
buyToken()
; and customers should receive a different amount of token based on their level - Call
ex7_testDenyListing()
in the evaluator to show he can't buy tokens usingbuyTokens()
(1 pt) - Add the evaluator in the first tier. He should now be able to buy N tokens for Y amount of ETH
- Call
ex8_testTier1Listing()
in the evaluator to show he can now buy tokens(2 pt) - Add the evaluator in the second tier. He should now be able to buy 2N tokens for Y amount of ETH
- Call
ex9_testTier2Listing()
in the evaluator to show he can now buy more tokens(2 pt)
All in one
- Finish all the workshop in a single transaction! Write a contract that implements a function called
completeWorkshop()
when called. Callex10_allInOne()
from this contract. All points are credited to the validating contract (2pt)
Extra points
Extra points if you find bugs / corrections this TD can benefit from, and submit a PR to make it better. Ideas:
- Adding a way to check the code of a specific contract was only used once (no copying)