op-geth/README.md

131 lines
5.6 KiB
Markdown
Raw Normal View History

## Ethereum Go
2015-02-05 12:34:47 -08:00
Ethereum Go Client © 2014 Jeffrey Wilcke.
2015-02-20 18:13:39 +01:00
| Linux | OSX | Windows | Tests
----------|---------|-----|---------|------
2015-02-20 20:52:03 +01:00
develop | [![Build+Status](https://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20develop%20branch)](https://build.ethdev.com/builders/Linux%20Go%20develop%20branch/builds/-1) | [![Build+Status](https://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20develop%20branch)](https://build.ethdev.com/builders/OSX%20Go%20develop%20branch/builds/-1) | N/A | [![Buildr+Status](https://travis-ci.org/ethereum/go-ethereum.svg?branch=develop)](https://travis-ci.org/ethereum/go-ethereum)
master | [![Build+Status](https://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20master%20branch)](https://build.ethdev.com/builders/Linux%20Go%20master%20branch/builds/-1) | [![Build+Status](https://build.ethdev.com/buildstatusimage?builder=OSX%20Go%20master%20branch)](https://build.ethdev.com/builders/OSX%20Go%20master%20branch/builds/-1) | N/A | [![Buildr+Status](https://travis-ci.org/ethereum/go-ethereum.svg?branch=master)](https://travis-ci.org/ethereum/go-ethereum)
2015-02-05 12:34:47 -08:00
2014-10-27 17:22:29 +01:00
[![Bugs](https://badge.waffle.io/ethereum/go-ethereum.png?label=bug&title=Bugs)](https://waffle.io/ethereum/go-ethereum)
2014-10-22 15:56:40 -06: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 19:09:29 +01: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 18:48:19 +01:00
2014-10-27 17:14:37 +01:00
2014-10-27 17:22:29 +01:00
Build
=====
2015-01-24 19:09:29 +01:00
Mist (GUI):
2014-10-27 17:22:29 +01:00
`go get github.com/ethereum/go-ethereum/cmd/mist`
2015-01-24 19:09:29 +01:00
Ethereum (CLI):
2014-10-27 17:22:29 +01: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 17:24:43 +01:00
Automated (dev) builds
======================
* [[Docker](https://registry.hub.docker.com/u/ethereum/client-go/)]
2015-02-06 22:36:22 -05:00
* [[OS X](http://build.ethdev.com/builds/OSX%20Go%20develop%20branch/Mist-OSX-latest.dmg)]
2014-10-27 17:24:43 +01:00
* [Windows] Coming soon™
* [Linux] Coming soon™
2014-10-27 17:22:29 +01:00
2014-11-18 20:23:17 +01:00
Binaries
2014-10-27 17:22:29 +01:00
========
2014-02-15 00:04:46 +01:00
2014-11-18 20:23:17 +01: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:
`cat file | ethtest`.
2014-11-18 20:23:17 +01: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 19:09:29 +01:00
* `rlpdump` converts a rlp stream to `interface{}`.
* `peerserver` simple P2P (noi-ethereum) peer server.
2015-01-30 14:41:14 +01:00
* `disasm` disassembles EVM code: `echo "6001" | disasm`
2014-02-15 13:27:23 +01:00
2014-03-30 22:03:29 +02:00
General command line options
2014-10-27 17:22:29 +01:00
============================
2013-12-26 13:29:45 +01:00
2014-01-16 11:00:56 +01:00
```
2014-11-18 20:23:17 +01:00
== Shared between ethereum and Mist ==
= Settings
-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 22:13:39 +02:00
-upnp Enable UPnP
-maxpeer Desired amount of peers
-rpc Start JSON RPC
2014-05-20 22:13:39 +02:00
-dir Data directory used to store configs and databases
2014-11-18 20:23:17 +01: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 15:27:08 +01:00
2014-05-20 22:13:39 +02:00
Ethereum only
ethereum [options] [filename]
2014-05-21 14:04:11 +02:00
-js Start the JavaScript REPL
filename Load the given file and interpret as JavaScript
-m Start mining blocks
2014-02-08 22:16:11 +01:00
2014-11-18 20:23:17 +01:00
== Mist only ==
2014-05-20 22:13:39 +02:00
-asset_path absolute path to GUI assets directory
2014-02-08 22:16:11 +01:00
```
2014-01-11 15:27:08 +01:00
Contribution
============
If you'd like to contribute to Ethereum please fork, fix, commit and
2014-02-15 00:04:46 +01:00
send a pull request. Commits who do not comply with the coding standards
2014-08-21 15:27:01 +02:00
are ignored (use gofmt!). If you send pull requests make absolute sure that you
2014-02-15 11:49:39 +01: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 11:49:29 +01:00
2015-02-16 17:59:54 +01:00
For dependency management, we use [godep](https://github.com/tools/godep). After installing with `go get github.com/tools/godep`, run `godep restore` to ensure that changes to other repositories do not break the build. To update a dependency version (for example, to include a new upstream fix), run `go get -u <foo/bar>` then `godep update <foo/...>`. To track a new dependency, add it to the project as normal than run `godep save ./...`. Changes to the Godeps folder should be manually verified then commited.
2014-02-15 11:49:39 +01: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 15:41:05 +01:00
Coding standards
================
2014-02-15 00:04:46 +01:00
Sources should be formatted according to the [Go Formatting
2014-01-11 15:41:05 +01:00
Style](http://golang.org/doc/effective_go.html#formatting).
2014-02-15 00:04:46 +01:00
Unless structs fields are supposed to be directly accesible, provide
Getters and hide the fields through Go's exporting facility.
2014-01-11 15:41:05 +01:00
2015-01-30 14:41:14 +01:00
When you comment put meaningful comments. Describe in detail what you
2014-02-15 00:04:46 +01:00
want to achieve.
2014-01-11 15:41:05 +01:00
*wrong*
```go
// Check if the value at x is greater than y
if x > y {
// It's greater!
}
```
2014-01-11 15:53:27 +01:00
2014-02-15 00:04:46 +01:00
Everyone reading the source probably know what you wanted to achieve
with above code. Those are **not** meaningful comments.
2014-01-16 11:00:56 +01:00
2014-02-15 00:04:46 +01: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 11:00:56 +01:00
2015-01-24 19:09:29 +01:00