Created
December 13, 2017 10:44
-
-
Save DaveHudson/549798ac120e15299af07e520f543806 to your computer and use it in GitHub Desktop.
Ethereum CLI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Update Brew | |
brew upate | |
brew upgrade | |
# Install Ethereum | |
brew tap ethereum/ethereum | |
brew install ethereum | |
# Create an account on your node | |
geth account new | |
# Connect to the network | |
geth | |
# Setup app and install ethereumjs in test mode with web3 | |
npm init | |
npm i --save ethereumjs-testrpc web3 | |
# Create test accounts | |
node_modules/.bin/testrpc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment