Skip to content

dolow/ERC-References

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What is this ?

Reference implementation of major ERCs.

Instruction

Prerequisites (Local environment)

Install geth

% brew tap ethereum/ethereum
% brew install ethereum

Launch local testnet

% geth --networkid 10 --allow-insecure-unlock --nodiscover -datadir ./eth_private_net/ --http --dev

Faucet local testnet ETH

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")});

Deploy truffle DApps

% truffle migrate --network geth

See how it works

Serve front/erc20.html somehow.

e.g)

% npm i --save-dev live-server
% npx live-server ./front

LICENSE

MIT

About

Reference implementations of major ERCs of Ethereum

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published