Go to file
Jeffrey Wilcke 23454dcfcb Merge pull request #840 from karalabe/throttled-dialing
p2p: throttled handshakes
2015-05-08 06:53:40 -07:00
Godeps Update ethash deps (more build fixes, tests) 2015-05-07 19:39:55 +02:00
_data
accounts
build Use Makefile for Travis tests 2015-04-29 02:13:37 +02:00
cmd Merge pull request #840 from karalabe/throttled-dialing 2015-05-08 06:53:40 -07:00
common solidity compiler and contract metadocs integration 2015-05-07 12:58:21 +02:00
compression/rle
core Merge pull request #833 from ethersphere/frontier/solidity 2015-05-08 03:43:31 -07:00
crypto Add loading of block test privkey if present 2015-04-27 20:30:26 +02:00
docker
errs
eth cmd, eth, p2p: introduce pending peer cli arg, add tests 2015-05-07 15:30:56 +03:00
ethdb Moved leveldb update loop to eth/backend 2015-04-23 17:58:58 +02:00
event xeth, core, event/filter, rpc: new block and transaction filters 2015-05-07 14:44:32 +02:00
generators
jsre Merge pull request #882 from zsfelfoldi/develop 2015-05-08 04:54:22 -07:00
logger
miner Integrate new ethash API and change geth makedag cmd 2015-05-05 08:24:15 +02:00
p2p p2p: increase the handshake timeout in the tests 2015-05-07 15:30:56 +03:00
params
pow Integrate new ethash API and change geth makedag cmd 2015-05-05 08:24:15 +02:00
rlp rlp: fix list bounds check overflow (found by go-fuzz) 2015-04-28 10:28:15 +02:00
rpc Merge pull request #833 from ethersphere/frontier/solidity 2015-05-08 03:43:31 -07:00
tests Add bcTotalDifficultyTest and unskip now working tx tests 2015-05-07 13:03:22 +02:00
trie
ui ui/qt/qwhisper, whisper, xeth: polish topic filter, fix wildcards 2015-04-28 10:49:04 +03:00
whisper p2p, whisper: use glog for peer-level logging 2015-05-06 23:19:14 +02:00
xeth Merge pull request #833 from ethersphere/frontier/solidity 2015-05-08 03:43:31 -07:00
.gitignore updated ignore 2015-05-07 00:03:11 +02:00
.gitmodules cmd/geth, jsre: updated ethereum.js => web3.js 2015-04-24 11:37:58 +02:00
.mailmap
.travis.yml Use Makefile for Travis tests 2015-04-29 02:13:37 +02:00
LICENSE
Makefile Use Makefile for Travis tests 2015-04-29 02:13:37 +02:00
README.md README: simplify build instructions 2015-04-29 02:13:35 +02:00
update-license.go

README.md

Ethereum Go

Ethereum Go Client © 2014 Jeffrey Wilcke.

      | Linux   | OSX | Windows | Tests

----------|---------|-----|---------|------ develop | Build+Status | Build+Status | Build+Status | Buildr+Status Coverage Status master | 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 (dev) builds

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.