Nincs leírás

Felix Lange 6fb810adaa p2p: throttle all discovery lookups 10 éve
Godeps be303ba186 Update ethash Godep (again) 10 éve
_data 8df689bd44 Chain tests 11 éve
accounts 1fa48bc5e7 Introduced default unlock duration when an account is unlocked from the console 10 éve
build 8d3faf69d0 Build error fixes 10 éve
cmd 3deded28a5 Merge pull request #1302 from obscuren/mist-removal 10 éve
common 787a61bb27 core/state, core/vm: reworked storage get / set to use common.Hash 10 éve
compression ddca18638f update imports order per goimports 11 éve
core 430bcdb219 core/vm: clarified SSTORE 10 éve
crypto 0f51ee6c88 crypto: return common.Address rather than raw bytes 10 éve
docker 33083e6f6c Revert "Revert "refactor Dockerfile"" 10 éve
errs 3d57e377a4 blockpool stability fixes: 10 éve
eth 8c4c7ea192 eth/fetcher: lower max cache size, add timeout slack 10 éve
ethdb 020006a8ed common, ethdb: removed caching and LastTD 10 éve
event 4541c22964 event/filter: hack around data race in the test 10 éve
generators b79dd188d9 replaced several path.* with filepath.* which is platform independent 10 éve
jsre 5f8e5a4875 upgrade web3.js with _extend support 10 éve
logger eaf73b55bc miner: moved bad uncle logging to ridiculous log level. Closes #720 10 éve
miner 6d817e16c1 core, miner: tx pool drops txs below ask price 10 éve
p2p 6fb810adaa p2p: throttle all discovery lookups 10 éve
params c26c8d3a44 Read most protocol params from common/params.json 10 éve
pow b1cc9cdc74 Integrate new ethash API and change geth makedag cmd 10 éve
rlp dd49c8e43d rlp: fix list bounds check overflow (found by go-fuzz) 10 éve
rpc 0fa2750fc9 Merge pull request #1290 from tgerring/dataargs 10 éve
tests 0743243dce Add --skip option to CLI 10 éve
trie bbe795455a Secure trie shakey / key matching 10 éve
whisper 6a2fec5309 p2p, whisper: use glog for peer-level logging 10 éve
xeth e4f9ec886b Merge pull request #1267 from SilentCicero/develop 10 éve
.gitignore 97c37356fd updated ignore 10 éve
.gitmodules 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js 10 éve
.mailmap f23529c5cd General repo cleanup 10 éve
.travis.yml 46bd6c43db travis: removed qt deps 10 éve
LICENSE c173e9f4ab MIT -> LGPL 11 éve
Makefile a1a475fb92 added console command 10 éve
README.md 53e042f0c4 Added link to ARM develop build 10 éve
update-license.go 899df30c24 fixed identing 10 éve

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.