Statediffing-fork of the official Go implementation of the Ethereum protocol
Go to file
2015-06-09 13:45:35 +02:00
_data
accounts
build
cmd Merge pull request #1193 from tgerring/hotbackup 2015-06-08 16:32:38 -07:00
common skipped failing natspec tests 2015-06-04 13:17:47 +02:00
compression/rle
core core: write accounts to statedb. Closes #1210 2015-06-09 11:37:01 +02:00
crypto crypto: return common.Address rather than raw bytes 2015-06-04 19:28:39 +02:00
docker
errs
eth Merge pull request #1188 from karalabe/newblockhashes-proposal 2015-06-09 04:07:46 -07:00
ethdb
event
generators
Godeps Godeps: update github.com/huin/goupnp to 5cff77a69fb22f5 2015-06-04 22:25:43 +02:00
jsre
logger
miner crash fix: skip deep log if self.chain is not caught up 2015-06-08 11:49:59 -07:00
p2p p2p/nat: add timeout for UPnP SOAP requests 2015-06-04 22:25:43 +02:00
params
pow
rlp
rpc
tests tests: use state logs instead own kept logs 2015-06-04 19:48:23 +02:00
trie
ui
whisper
xeth
.gitignore
.gitmodules
.mailmap
.travis.yml
LICENSE
Makefile
README.md Fixed readme links and description 2015-06-09 13:45:35 +02:00
update-license.go

Ethereum Go

Ethereum Go Client © 2014 Jeffrey Wilcke.

      | Linux   | OSX | ARM | Windows | Tests

----------|---------|-----|-----|---------|------ develop | Build+Status | Build+Status | Build+Status | Build+Status | Buildr+Status Coverage Status master | Build+Status | Build+Status | Build+Status | Build+Status | Buildr+Status Coverage Status

Bugs Stories in Ready ![Stories in Progress](https://badge.waffle.io/ethereum/go-ethereum.svg?label=in%20progress&title=In Progress) 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:

  • mist Official Ethereum Browser (ethereum GUI client)
  • 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: cat file | ethtest.
  • 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" | disasm
  • rlpdump prints RLP structures

Command line options

Both mist and 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.