Fork of plugeth with any needed changes for statediff plugin
Go to file
Jeffrey Wilcke ac10c9352e Merge pull request #1610 from obscuren/address-check
xeth: added address hex check and length check
2015-08-07 02:05:54 -07:00
_data
accounts
build
cmd Merge pull request #1600 from ethereum/fix-tests-windows 2015-08-06 12:39:29 -07:00
common common/compiler, common/docserver, jsre: fix tests on windows 2015-08-06 17:18:59 +02:00
compression/rle
core miner, core: sort txs by price, nonce 2015-08-05 17:44:19 +02:00
crypto
docker
errs
eth miner: gas limit strategy, target 3141592 & def gas price 50 Shannon 2015-08-04 15:20:28 +02:00
ethdb
event
fdtrack fdtrack: temporary hack for tracking file descriptor usage 2015-08-04 03:10:27 +02:00
generators
Godeps fdtrack: temporary hack for tracking file descriptor usage 2015-08-04 03:10:27 +02:00
jsre common/compiler, common/docserver, jsre: fix tests on windows 2015-08-06 17:18:59 +02:00
logger
metrics
miner miner, core: sort txs by price, nonce 2015-08-05 17:44:19 +02:00
p2p p2p/nat: disable UPnP test on windows 2015-08-06 17:18:59 +02:00
params miner: gas limit strategy, target 3141592 & def gas price 50 Shannon 2015-08-04 15:20:28 +02:00
pow
rlp
rpc fdtrack: temporary hack for tracking file descriptor usage 2015-08-04 03:10:27 +02:00
tests core, miner: added difficulty bomb 2015-08-05 13:09:09 +02:00
trie trie: run codec tests, add benchmarks, faster 2015-08-06 14:04:16 -04:00
whisper
xeth xeth: added address hex check and length check 2015-08-07 09:52:12 +02:00
.gitattributes .gitattributes: add 2015-08-06 17:18:59 +02:00
.gitignore
.gitmodules
.mailmap
.travis.yml
AUTHORS
COPYING
COPYING.LESSER
Makefile
README.md

Ethereum Go

Ethereum Go Client, by Jeffrey Wilcke (and some other people).

      | 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:

  • 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" | disasm
  • 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.