Go to file
Maran 2012e0c67a Rewritten a check to only start mining once we are caught up with all peers 2014-05-14 13:26:15 +02:00
ethereal Refactored mining into utils and exposed it to ethereal. Partly fixes #43 2014-05-14 12:41:30 +02:00
ethereum Refactored mining into utils and exposed it to ethereal. Partly fixes #43 2014-05-14 12:41:30 +02:00
utils Rewritten a check to only start mining once we are caught up with all peers 2014-05-14 13:26:15 +02:00
.gitignore Updated transaction constructor 2014-03-27 15:22:20 +01:00
.travis.yml sudo not udo 2014-01-10 10:59:57 +01:00
LICENSE Added license name and updated block output from the dev console 2014-02-18 01:34:33 +01:00
README.md Upgraded to new mutan 2014-05-10 16:22:57 +02:00

README.md

Ethereum

Build Status

Ethereum Go Client © 2014 Jeffrey Wilcke.

Current state: Proof of Concept 5.0 RC3.

For the development package please see the eth-go package.

Build

To build Ethereal (GUI):

go get github.com/ethereum/go-ethereum/ethereal

To build the node (CLI):

go get github.com/ethereum/go-ethereum/ethereum

For further, detailed, build instruction please see the Wiki

General command line options

-c       Launch the developer console (node only)
-m       Start mining blocks
-genaddr Generates a new address and private key (destructive action)
-p       Port on which the server will accept incomming connections (= 30303)
-upnp    Enable UPnP (= false)
-x       Desired amount of peers (= 5)
-h       This help
-r       Start JSON RPC
-dir     Data directory used to store configs and databases (=".ethereum")
-import  Import a private key (hex)

Developer console commands

addp <host>:<port>	      Connect to the given host
tx <addr> <amount>            Send <amount> Wei to the specified <addr>
contract <value> <gasprice>   Creates a new contract and launches the editor

See the "help" command for developer options.

Contribution

If you would like to contribute to Ethereum Go, please fork, fix, commit and send a pull request to the main repository. Commits which do not comply with the coding standards explained below will be ignored. If you send a pull request, make sure that you commit to the develop branch and that you do not merge to master. Commits that are directly based off of the master branch instead of the develop branch will be ignored.

To make this process simpler try following the git flow branching model, as it sets this process up and streamlines work flow.

Coding standards

Code should be formatted according to the Go Formatting Style.

Unless struct fields are supposed to be directly accessible, provide getters and hide the fields through Go's exporting facility.

Make comments in your code meaningful and only use them when necessary. Describe in detail what your code is trying to achieve. For example, this would be redundant and unnecessary commenting:

wrong

// Check if the value at x is greater than y
if x > y {
    // It's greater!
}

Everyone reading the source code should know what this code snippet was meant to achieve, and so those are not meaningful comments.

While this project is constantly tested and run, code tests should be written regardless. There is not time to evaluate every person's code specifically, so it is expected of you to write tests for the code so that it does not have to be tested manually. In fact, contributing by simply writing tests is perfectly fine!