Official Go implementation of the Ethereum protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-ethereum/README.md

83 lines
2.8 KiB

11 years ago
Ethereum
========
11 years ago
11 years ago
[![Build Status](https://travis-ci.org/ethereum/go-ethereum.png?branch=master)](https://travis-ci.org/ethereum/go-ethereum)
Ethereum Go Client © 2014 Jeffrey Wilcke.
11 years ago
10 years ago
Current state: Proof of Concept 5.0 RC7.
11 years ago
For the development package please see the [eth-go package](https://github.com/ethereum/eth-go).
11 years ago
Build
11 years ago
=======
11 years ago
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](https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum(Go))
General command line options
11 years ago
====================
11 years ago
```
Shared between ethereum and ethereal
11 years ago
-m Start mining blocks
-genaddr Generates a new address and private key (destructive action)
-p Port on which the server will accept incomming connections
-upnp Enable UPnP
-x Desired amount of peers
11 years ago
-r Start JSON RPC
-dir Data directory used to store configs and databases
-import Import a private key
-h This
Ethereum only
ethereum [options] [filename]
-js Start the JavaScript REPL
11 years ago
Etheral only
-asset_path absolute path to GUI assets directory
11 years ago
```
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](http://nvie.com/posts/a-successful-git-branching-model/) branching model, as it sets this process up and streamlines work flow.
11 years ago
Coding standards
================
Code should be formatted according to the [Go Formatting
11 years ago
Style](http://golang.org/doc/effective_go.html#formatting).
Unless struct fields are supposed to be directly accessible, provide
getters and hide the fields through Go's exporting facility.
11 years ago
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:
11 years ago
*wrong*
```go
// Check if the value at x is greater than y
if x > y {
// It's greater!
}
```
11 years ago
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!