Bez popisu

Péter Szilágyi 6994a3daaa p2p: instrument P2P networking layer před 10 roky
Godeps be303ba186 Update ethash Godep (again) před 10 roky
_data 8df689bd44 Chain tests před 11 roky
accounts 1fa48bc5e7 Introduced default unlock duration when an account is unlocked from the console před 10 roky
build 8d3faf69d0 Build error fixes před 10 roky
cmd 821e01b013 cmd/geth, eth/fetcher: initial metrics support před 10 roky
common c590b505ed core, ethdb, trie: validate database errors před 10 roky
compression ddca18638f update imports order per goimports před 11 roky
core a4a4e9fcf8 removed old rpc structure and added new inproc api client před 10 roky
crypto 0f51ee6c88 crypto: return common.Address rather than raw bytes před 10 roky
docker 33083e6f6c Revert "Revert "refactor Dockerfile"" před 10 roky
errs 3d57e377a4 blockpool stability fixes: před 10 roky
eth 821e01b013 cmd/geth, eth/fetcher: initial metrics support před 10 roky
ethdb c590b505ed core, ethdb, trie: validate database errors před 10 roky
event 4541c22964 event/filter: hack around data race in the test před 10 roky
generators b79dd188d9 replaced several path.* with filepath.* which is platform independent před 10 roky
jsre 5f8e5a4875 upgrade web3.js with _extend support před 10 roky
logger eaf73b55bc miner: moved bad uncle logging to ridiculous log level. Closes #720 před 10 roky
miner 07c3de3f75 core, miner, xeth: renamed gas methods před 10 roky
p2p 6994a3daaa p2p: instrument P2P networking layer před 10 roky
params c26c8d3a44 Read most protocol params from common/params.json před 10 roky
pow b1cc9cdc74 Integrate new ethash API and change geth makedag cmd před 10 roky
rlp dd49c8e43d rlp: fix list bounds check overflow (found by go-fuzz) před 10 roky
rpc 57c911c398 bugfix in startRPC error handling před 10 roky
tests 398d08a8dd tests: SetGasLimit před 10 roky
trie a40a91d60f trie: fixed tests před 10 roky
whisper 6a2fec5309 p2p, whisper: use glog for peer-level logging před 10 roky
xeth 07c3de3f75 core, miner, xeth: renamed gas methods před 10 roky
.gitignore 97c37356fd updated ignore před 10 roky
.gitmodules 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js před 10 roky
.mailmap f23529c5cd General repo cleanup před 10 roky
.travis.yml 46bd6c43db travis: removed qt deps před 10 roky
LICENSE c173e9f4ab MIT -> LGPL před 11 roky
Makefile 36a6b16a3b removed console command před 10 roky
README.md 53e042f0c4 Added link to ARM develop build před 10 roky
update-license.go 899df30c24 fixed identing před 10 roky

README.md

Ethereum Go

Ethereum Go Client © 2014 Jeffrey Wilcke.

      | Linux   | OSX | ARM | Windows | Tests

----------|---------|-----|-----|---------|------ develop | | | | | Coverage Status master | | | | | Coverage Status

Bugs Stories in Ready Stories 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.