Skip to content

Instantly share code, notes, and snippets.

@goastoman
Created January 21, 2018 06:03
Show Gist options
  • Save goastoman/bc380e03df7dfd2ff066bf4f6cf4a6ff to your computer and use it in GitHub Desktop.
Save goastoman/bc380e03df7dfd2ff066bf4f6cf4a6ff to your computer and use it in GitHub Desktop.
Setting Up geth console
brew update
brew upgrade
brew tap ethereum/ethereum
brew install cpp-ethereum
brew linkapps cpp-ethereum
//get the way to binar
export PATH=*YOURWAYTOBIN*:$PATH
// --dev for private network
// --rpc launch RPC-HTTP on localhost:8545 (use --rpcaddr --rpcport for changing)
// --rpcapi access rights for applications
geth --dev --rpc --rpcaddr "0.0.0.0" --rpcapi "admin,debug,miner,shh,txpool,personal,eth,net,web3" console
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment