Reference implementation of major ERCs.
% brew tap ethereum/ethereum
% brew install ethereum
% geth --networkid 10 --allow-insecure-unlock --nodiscover -datadir ./eth_private_net/ --http --dev
Launch geth console
% geth --networkid 10 --allow-insecure-unlock --nodiscover -datadir ./eth_private_net/ --http --dev console
> eth.sendTransaction({from: eth.coinbase, to: <address>, value: web3.toWei(amount, "ether")});
% truffle migrate --network geth
Serve front/erc20.html somehow.
e.g)
% npm i --save-dev live-server
% npx live-server ./front
MIT