thiagoh / ethereum-fproject

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Start new network
geth init genesis.json
Run the network without mining
geth --rpc --fast --cache 512 --ipcpath ~/Library/Ethereum/geth.ipc --networkid 15
Run Mist
mist --rpc --ipcpath ~/Library/Ethereum/geth.ipc --networkid 15
Run the network with mining
geth --rpc --cache 512 --ipcpath ~/Library/Ethereum/geth.ipc --networkid 15 --mine --minerthreads=1 --etherbase=0x0000000000000000000000000000000000000000
Attach to some specific network
geth --ipcpath ~/Library/Ethereum/geth.ipc --networkid 15 attach
Compile the contract
solc --gas --bin --abi -o bin --overwrite greeter.sol

About


Languages

Language:JavaScript 72.3%Language:Python 27.5%Language:Shell 0.3%