Fork of plugeth with any needed changes for statediff plugin
Go to file
Jeffrey Wilcke 796952a49a Merge pull request #1758 from fjl/coinbase
core, core/state: move gas tracking out of core/state
2015-10-20 03:31:36 -07:00
_data
accounts
build all: Add GPU mining, disabled by default 2015-10-07 13:19:30 +02:00
cmd Merge pull request #1869 from Gustav-Simonsson/gpu_miner 2015-10-16 06:25:33 -07:00
common Merge pull request #1869 from Gustav-Simonsson/gpu_miner 2015-10-16 06:25:33 -07:00
compression/rle
core core, core/state: move gas tracking out of core/state 2015-10-17 10:24:34 +02:00
crypto Merge pull request #1853 from Gustav-Simonsson/libsecp256k1_update 2015-10-15 10:46:57 -07:00
docker
errs
eth Merge pull request #1899 from obscuren/mipmap-bloom 2015-10-16 12:35:24 -07:00
ethdb ethdb: remove Flush 2015-09-14 23:36:30 +02:00
event core, eth, event, miner, xeth: fix event post / subscription race 2015-10-12 16:22:03 +03:00
generators
Godeps godeps: update ethash following GPU miner merge 2015-10-16 16:27:51 +02:00
jsre Merge pull request #1811 from bas-vk/timer-clearinterval 2015-09-17 19:21:49 +02:00
logger
metrics eth, metrics, p2p: prepare metrics and net packets to eth/62 2015-08-21 10:30:57 +03:00
miner core, core/state: move gas tracking out of core/state 2015-10-17 10:24:34 +02:00
p2p p2p/discover: ignore packet version numbers 2015-09-30 16:23:03 +02:00
params
pow all: Add GPU mining, disabled by default 2015-10-07 13:19:30 +02:00
rlp rlp: move ListSize to raw.go 2015-09-10 19:41:51 +02:00
rpc Merge pull request #1869 from Gustav-Simonsson/gpu_miner 2015-10-16 06:25:33 -07:00
tests core, core/state: move gas tracking out of core/state 2015-10-17 10:24:34 +02:00
trie trie: add merkle proof functions 2015-09-22 22:57:37 +02:00
whisper
xeth core, core/state: move gas tracking out of core/state 2015-10-17 10:24:34 +02:00
.gitattributes
.gitignore
.gitmodules
.mailmap
.travis.yml
AUTHORS
CONTRIBUTING.md
COPYING
COPYING.LESSER
Makefile all: Add GPU mining, disabled by default 2015-10-07 13:19:30 +02:00
README.md
VERSION VERSION: added version 2015-09-23 14:47:20 +02:00

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 two external dependencies, Go and GMP. 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.