Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 933 Bytes

README.md

File metadata and controls

43 lines (29 loc) · 933 Bytes

Ethereum Playground

Build private Blockchain with Go-Ethereum

Getting Started

Installing

  1. Clone this repository anywhere on your machine:
$ get clone https://github.com/snlangsuan/ethereum-playground.git
  1. Run docker compose build
  $ docker-compose up -d --build

Usage

  1. Access to node with Geth Javascript Console
$ geth attach node-01/geth.ipc
  1. Check peers in bootnode
> net.peerCount
2 // in this code must equal 2
  1. Send base coin to other account
> eth.sendTransaction({ from: <SOURCE_ADDRESS>, to: <DESTINATION_ADDRESS>, value: <NUMBER_IN_WEI> })

Acknowledgments