Skip to content

Instantly share code, notes, and snippets.

@cicorias
Created April 14, 2017 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cicorias/f247a7b87836a401869919dd19c9e52e to your computer and use it in GitHub Desktop.
Save cicorias/f247a7b87836a401869919dd19c9e52e to your computer and use it in GitHub Desktop.
quick run of geth
#!/usr/bin/env bash
set -x
COINBASE=0xb43cd96eDF87fB9686fB18A932FF2Aa011A46c37
RPC="--rpc --rpcaddr "0.0.0.0" --rpcapi "admin,debug,eth,miner,net,personal,shh,txpool,web3" --rpccorsdomain "*"
MINE="--mine --minerthreads 1" --etherbase $COINBASE"
VERBOSITY="--verbosity 3"
LOGFILE='2>1 1>geth.log'
nohup geth --networkid 3 --identity shawncicoriadev --fast $RPC $MINE $VERBOSITY $LOGFILE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment