Go to file
Jeffrey Wilcke 4811409e99 Merge pull request #2084 from bas-vk/rpcnilptr
console crash on nil ptr
2015-12-18 20:25:55 +01:00
Godeps rpc/v2: optionally passing context argument to rpc v2 api methods 2015-12-16 03:48:08 +01:00
_data
accounts Merge pull request #2035 from bas-vk/rcp-v2-rebase 2015-12-14 17:38:10 +01:00
build all: Add GPU mining, disabled by default 2015-10-07 13:19:30 +02:00
cmd console: bugfix that causes the console to crash when connection to an endpoint without the personal api enabled 2015-12-18 15:30:08 +01:00
common rpc: new RPC implementation with pub/sub support 2015-12-14 16:34:05 +01:00
compression/rle
core core: tx pool skip price validation for "owned" transactions 2015-12-16 03:21:17 +01:00
crypto Merge pull request #2056 from fjl/fix-account-format 2015-12-10 10:45:00 +01:00
docker update Dockerfile, remove supervisord and unattended-upgrades 2015-10-26 18:06:19 -04:00
errs
eth Merge pull request #1997 from zsfelfoldi/gasprice2 2015-12-17 12:45:45 +01:00
ethdb core, eth, trie: fix data races and merge/review issues 2015-10-21 16:49:55 +03:00
event event/filter: fix data race in the test 2015-11-05 16:55:53 +02:00
generators
jsre Merge pull request #1999 from karalabe/javascript-timer-argcheck 2015-11-26 23:00:36 +01:00
light light: implemented odr-capable trie and state structures 2015-12-17 16:07:54 +01:00
logger
metrics
miner rpc: new RPC implementation with pub/sub support 2015-12-14 16:34:05 +01:00
node core, eth, node, rpc: port the admin and debug API 2015-12-14 19:36:51 +02:00
p2p p2p/discover: attempt to deflake TestUDP_responseTimeouts 2015-12-17 23:44:56 +01:00
params
pow all: Add GPU mining, disabled by default 2015-10-07 13:19:30 +02:00
rlp
rpc Merge pull request #2061 from zsfelfoldi/rpc-context 2015-12-16 11:12:06 +01:00
tests cmd, common, core, eth, node, rpc, tests, whisper, xeth: use protocol stacks 2015-11-27 11:06:12 +02:00
trie light: implemented odr-capable trie and state structures 2015-12-17 16:07:54 +01:00
whisper Merge pull request #2035 from bas-vk/rcp-v2-rebase 2015-12-14 17:38:10 +01:00
xeth core: tx pool skip price validation for "owned" transactions 2015-12-16 03:21:17 +01:00
.gitattributes
.gitignore
.gitmodules
.mailmap
.travis.yml crypto/secp256k1: remove dependency on libgmp 2015-12-03 21:12:13 +01:00
AUTHORS
CONTRIBUTING.md
COPYING
COPYING.LESSER
Makefile Makefile, cmd/geth: support building Android archives 2015-12-14 14:28:14 +02:00
README.md crypto/secp256k1: remove dependency on libgmp 2015-12-03 21:12:13 +01:00
VERSION VERSION, cmd/geth: bumped version 1.4.0 2015-11-03 11:48:18 +01:00

README.md

Ethereum Go

Official golang implementation of the Ethereum protocol

      | Linux   | OSX | ARM | Windows | Tests

----------|---------|-----|-----|---------|------ develop | Build+Status | Build+Status | Build+Status | Build+Status | Buildr+Status codecov.io master | Build+Status | Build+Status | Build+Status | Build+Status | Buildr+Status codecov.io

API Reference Gitter

Automated development builds

The following builds are build automatically by our build servers after each push to the develop branch.

Building the source

For prerequisites and detailed build instructions please read the Installation Instructions on the wiki.

Building geth requires both a Go and a C compiler. You can install them using your favourite package manager. Once the dependencies are installed, run

make geth

Executables

Go Ethereum comes with several wrappers/executables found in the cmd directory:

Command
geth Ethereum CLI (ethereum command line interface client)
bootnode runs a bootstrap node for the Discovery Protocol
ethtest test tool which runs with the tests suite: /path/to/test.json > ethtest --test BlockTests --stdin.
evm is a generic Ethereum Virtual Machine: evm -code 60ff60ff -gas 10000 -price 0 -dump. See -h for a detailed description.
disasm disassembles EVM code: `echo "6001"
rlpdump prints RLP structures

Command line options

geth can be configured via command line options, environment variables and config files.

To get the options available:

geth help

For further details on options, see the wiki

Contribution

If you'd like to contribute to go-ethereum please fork, fix, commit and send a pull request. Commits who do not comply with the coding standards are ignored (use gofmt!). If you send pull requests make absolute sure that you commit on the develop branch and that you do not merge to master. Commits that are directly based on master are simply ignored.

See Developers' Guide for more details on configuring your environment, testing, and dependency management.