2014-10-27 18:22:29 +02:00
[![Bugs ](https://badge.waffle.io/ethereum/go-ethereum.png?label=bug&title=Bugs )](https://waffle.io/ethereum/go-ethereum)
2014-10-23 00:56:40 +03:00
[![Stories in Ready ](https://badge.waffle.io/ethereum/go-ethereum.png?label=ready&title=Ready )](https://waffle.io/ethereum/go-ethereum)
2015-01-24 20:09:29 +02:00
[![Stories in Progress ](https://badge.waffle.io/ethereum/go-ethereum.svg?label=in%20progress&title=In Progress )](http://waffle.io/ethereum/go-ethereum)
[![Gitter ](https://badges.gitter.im/Join%20Chat.svg )](https://gitter.im/ethereum/go-ethereum?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge)
2015-01-24 19:48:19 +02:00
2014-10-27 18:14:37 +02:00
2015-01-24 20:09:29 +02:00
Ethereum PoC-8
2014-01-09 00:42:23 +02:00
========
2014-01-05 21:45:32 +02:00
2015-01-24 20:09:29 +02:00
* [![Build Status ](http://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20master%20branch )](http://build.ethdev.com:8010/builders/Linux%20Go%20master%20branch/builds/-1) master
* [![Build Status ](http://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20develop%20branch )](http://build.ethdev.com:8010/builders/Linux%20Go%20develop%20branch/builds/-1) develop
* [![Travis-ci ](https://api.travis-ci.org/ethereum/go-ethereum.svg )](https://travis-ci.org/ethereum/go-ethereum) travis-ci
* [![Coverage Status ](https://coveralls.io/repos/ethereum/go-ethereum/badge.png?branch=tests )](https://coveralls.io/r/ethereum/go-ethereum?branch=tests)
2014-07-30 16:33:42 +03:00
2014-04-07 22:58:36 +03:00
Ethereum Go Client © 2014 Jeffrey Wilcke.
2014-01-11 16:53:27 +02:00
2014-10-27 18:22:29 +02:00
Build
=====
2015-01-24 20:09:29 +02:00
Mist (GUI):
2014-10-27 18:22:29 +02:00
`go get github.com/ethereum/go-ethereum/cmd/mist`
2015-01-24 20:09:29 +02:00
Ethereum (CLI):
2014-10-27 18:22:29 +02:00
`go get github.com/ethereum/go-ethereum/cmd/ethereum`
For further, detailed, build instruction please see the [Wiki ](https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum(Go ))
2014-10-27 18:24:43 +02:00
Automated (dev) builds
======================
* [[OS X ](http://build.ethdev.com/builds/OSX%20Go%20develop%20branch/latest/app/ )]
* [Windows] Coming soon™
* [Linux] Coming soon™
2014-10-27 18:22:29 +02:00
2014-11-18 21:23:17 +02:00
Binaries
2014-10-27 18:22:29 +02:00
========
2014-02-15 01:04:46 +02:00
2014-11-18 21:23:17 +02:00
Go Ethereum comes with several binaries found in
[cmd ](https://github.com/ethereum/go-ethereum/tree/master/cmd ):
* `mist` Official Ethereum Browser
* `ethereum` Ethereum CLI
* `ethtest` test tool which runs with the [tests ](https://github.com/ethereum/testes ) suit:
2015-01-22 23:42:39 +02:00
`cat file | ethtest` .
2014-11-18 21:23:17 +02:00
* `evm` is a generic Ethereum Virtual Machine: `evm -code 60ff60ff -gas
10000 -price 0 -dump`. See `-h` for a detailed description.
2015-01-24 20:09:29 +02:00
* `rlpdump` converts a rlp stream to `interface{}` .
* `peerserver` simple P2P (noi-ethereum) peer server.
2015-01-30 15:41:14 +02:00
* `disasm` disassembles EVM code: `echo "6001" | disasm`
2014-02-15 14:27:23 +02:00
2014-03-30 22:03:29 +02:00
General command line options
2014-10-27 18:22:29 +02:00
============================
2013-12-26 14:29:45 +02:00
2014-01-16 12:00:56 +02:00
```
2014-11-18 21:23:17 +02:00
== Shared between ethereum and Mist ==
= Settings
2014-05-30 17:56:56 +03:00
-id Set the custom identifier of the client (shows up on other clients)
-port Port on which the server will accept incomming connections
2014-05-20 23:13:39 +03:00
-upnp Enable UPnP
2014-05-30 17:56:56 +03:00
-maxpeer Desired amount of peers
-rpc Start JSON RPC
2014-05-20 23:13:39 +03:00
-dir Data directory used to store configs and databases
2014-11-18 21:23:17 +02:00
= Utility
-h This
-import Import a private key
-genaddr Generates a new address and private key (destructive action)
-dump Dump a specific state of a block to stdout given the -number or -hash
-difftool Supress all output and prints VM output to stdout
-diff vm=only vm output, all=all output including state storage
2014-01-11 16:27:08 +02:00
2014-05-20 23:13:39 +03:00
Ethereum only
ethereum [options] [filename]
2014-05-21 15:04:11 +03:00
-js Start the JavaScript REPL
filename Load the given file and interpret as JavaScript
2014-05-30 17:14:46 +03:00
-m Start mining blocks
2014-02-08 23:16:11 +02:00
2014-11-18 21:23:17 +02:00
== Mist only ==
2014-05-20 23:13:39 +03:00
-asset_path absolute path to GUI assets directory
2014-02-08 23:16:11 +02:00
```
2014-01-11 16:27:08 +02:00
Contribution
============
2014-10-23 16:01:27 +03:00
If you'd like to contribute to Ethereum please fork, fix, commit and
2014-02-15 01:04:46 +02:00
send a pull request. Commits who do not comply with the coding standards
2014-08-21 16:27:01 +03:00
are ignored (use gofmt!). If you send pull requests make absolute sure that you
2014-02-15 12:49:39 +02:00
commit on the `develop` branch and that you do not merge to master.
Commits that are directly based on master are simply ignored.
2014-02-15 12:49:29 +02:00
2014-02-15 12:49:39 +02:00
To make life easier try [git flow ](http://nvie.com/posts/a-successful-git-branching-model/ ) it sets
this all up and streamlines your work flow.
2014-01-11 16:41:05 +02:00
Coding standards
================
2014-02-15 01:04:46 +02:00
Sources should be formatted according to the [Go Formatting
2014-01-11 16:41:05 +02:00
Style](http://golang.org/doc/effective_go.html#formatting).
2014-02-15 01:04:46 +02:00
Unless structs fields are supposed to be directly accesible, provide
Getters and hide the fields through Go's exporting facility.
2014-01-11 16:41:05 +02:00
2015-01-30 15:41:14 +02:00
When you comment put meaningful comments. Describe in detail what you
2014-02-15 01:04:46 +02:00
want to achieve.
2014-01-11 16:41:05 +02:00
*wrong*
```go
// Check if the value at x is greater than y
if x > y {
// It's greater!
}
```
2014-01-11 16:53:27 +02:00
2014-02-15 01:04:46 +02:00
Everyone reading the source probably know what you wanted to achieve
with above code. Those are **not** meaningful comments.
2014-01-16 12:00:56 +02:00
2014-02-15 01:04:46 +02:00
While the project isn't 100% tested I want you to write tests non the
less. I haven't got time to evaluate everyone's code in detail so I
expect you to write tests for me so I don't have to test your code
manually. (If you want to contribute by just writing tests that's fine
too!)
2014-01-16 12:00:56 +02:00
2015-01-24 20:09:29 +02:00