Skip to content

gianluca-sabena/ethereum-playground

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Disclaimer

This is a docker compose for a PRIVATE and INSECURE ethereum network - Use it for dev and test purpose only

This ethereum private network uses a genesis block with really low difficulty, this allow you to mine block in ms, useful for test and dev, but this makes the blockchain insecure.

Eth nodes have all rpc api enabled (included admin, db, ecc...), this allow full access from an external ethereum console, but it is insecure!

Introdction

Start here - Great introduction to cryptocurrency, bitcoin and ethereum https://github.com/ethereum/wiki/wiki/White-Paper

How to run

folder geth-solidity contains a docker for go ethereum with solidity compiler (solc)

folder geth-compose contains a docker compose for a private network with 3 nodes

$ docker-compose build
$ docker-compose up```

The build process may takes some time...

When nodes are up, you can run another docker with an ethereum console

```$ cd geth-solidity
$ ./manage.sh geth-console-node-01```

You can have multiple console connected to different nodes and see how data is replicated between nodes

# Tutorials

Check geth-solidity/console-script for two tutorials: one creates a simple transection between two users, second creates and compiles a smart contract



# Links

* main wiki https://github.com/ethereum/wiki/wiki
* https://github.com/ethereum/go-ethereum/wiki/Connecting-to-the-network
* rpc api docs https://godoc.org/github.com/ethereum/go-ethereum/rpc/api
* example transaction https://ethereum.gitbooks.io/frontier-guide/content/sending_ether.html

# Rpc api

Check if a node is connected to another

```curl http://dockerhost:8101  -X POST --data '{"jsonrpc":"2.0","method":"admin_peers","params":[]}'```

About

A docker compose for a private ethereum network with geth

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published