This is example repo for my articles about simple ERC20 compliant token:
First install truffle and ganache globally:
npm install -g truffle
npm install -g ganache-cliNow run ganache-cli on port 7545:
ganache-cli -b 3 -p 7545Run the migrations (contracts are already compiled):
truffle migrateInstall 🦊 Metamask browser extension and connect to local network (custom RPC, http://localhost:7545)
Go to /front folder install dependencies and run the app:
cd front
yarn
yarn startWeb app should be available on http://localhost:3000.
Login to Metamask using first private key from ganache-cli output. This account has all the Tutorial Tokens.
Try to send tokens to one of other accounts. You can get their addresses from ganache-cli as well.
