Skip to content

Instantly share code, notes, and snippets.

@hsylife
Last active March 9, 2017 13:58
Show Gist options
  • Save hsylife/0061d4ad684dea4d32772423d4da36de to your computer and use it in GitHub Desktop.
Save hsylife/0061d4ad684dea4d32772423d4da36de to your computer and use it in GitHub Desktop.
Ethereumのプライベートネットワークで送金する体験 ref: http://qiita.com/hsylife/items/5668dca6cda778efe6bd
> miner.setEtherbase(eth.accounts[0])
> miner.start()
> miner.stop()
> personal.getBalance(eth.accounts[0])
> personal.getBalance(eth.accounts[1])
> personal.unlockAccount(eth.accounts[0])
> eth.sendTransaction({from: eth.accounts[0], to: eth.accounts[1], value: web3.toWei(3, "ether")})
> miner.start()
> miner.stop()
> personal.getBalance(eth.accounts[0])
> personal.getBalance(eth.accounts[1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment