Fork of plugeth with any needed changes for statediff plugin
Go to file
2015-05-20 02:47:13 +01:00
_data
accounts Introduced default unlock duration when an account is unlocked from the console 2015-05-14 14:25:48 +02:00
build
cmd add usage doc to wallet import 2015-05-20 02:47:13 +01:00
common remove solc flair 2015-05-20 02:47:13 +01:00
compression/rle
core core: block cache Has method thread safe 2015-05-19 21:50:56 +02:00
crypto Update keystore code comments 2015-05-13 18:33:31 +02:00
docker
errs
eth solc now in ethereum, fixes solc path setting; setSolc() didnt work 2015-05-20 02:47:13 +01:00
ethdb
event
generators
Godeps Merge pull request #960 from fjl/nat-fixes 2015-05-14 04:06:13 -07:00
jsre
logger
miner fix solc tests unskip 2015-05-20 02:47:13 +01:00
p2p Merge pull request #971 from fjl/p2p-limit-tweaks 2015-05-14 08:15:51 -07:00
params
pow
rlp
rpc fix solc tests unskip 2015-05-20 02:47:13 +01:00
tests Add StateTests/RandomTests but skip for now 2015-05-15 19:17:40 +02:00
trie
ui
whisper
xeth solc now in ethereum, fixes solc path setting; setSolc() didnt work 2015-05-20 02:47:13 +01:00
.gitignore
.gitmodules
.mailmap
.travis.yml
LICENSE
Makefile
README.md
update-license.go

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.