Sem descrição

Jeffrey Wilcke 4dfcd6012b Merge pull request #1392 from bas-vk/ipcpipelining há 10 anos atrás
Godeps 4d11747836 deps: Added golang-lru há 10 anos atrás
_data 8df689bd44 Chain tests há 11 anos atrás
accounts 1fa48bc5e7 Introduced default unlock duration when an account is unlocked from the console há 10 anos atrás
build 8d3faf69d0 Build error fixes há 10 anos atrás
cmd 4dfcd6012b Merge pull request #1392 from bas-vk/ipcpipelining há 10 anos atrás
common d23ec6c419 Change keystore to version 3 há 10 anos atrás
compression ddca18638f update imports order per goimports há 11 anos atrás
core 1cbab291a9 Merge pull request #1389 from obscuren/txpool-issues há 10 anos atrás
crypto d23ec6c419 Change keystore to version 3 há 10 anos atrás
docker 33083e6f6c Revert "Revert "refactor Dockerfile"" há 10 anos atrás
errs 3d57e377a4 blockpool stability fixes: há 10 anos atrás
eth 29e2fb38f8 core, miner: miner header validation, transaction & receipt writing há 10 anos atrás
ethdb ccbb56b4f2 cmd/geth, eth, ethdb: monitor database compactions há 10 anos atrás
event 4541c22964 event/filter: hack around data race in the test há 10 anos atrás
generators b79dd188d9 replaced several path.* with filepath.* which is platform independent há 10 anos atrás
jsre 5f8e5a4875 upgrade web3.js with _extend support há 10 anos atrás
logger eaf73b55bc miner: moved bad uncle logging to ridiculous log level. Closes #720 há 10 anos atrás
metrics 01fe972113 cmd, core, eth, metrics, p2p: require enabling metrics há 10 anos atrás
miner 0e33fbdcb9 miner: ignore future errors há 10 anos atrás
p2p 01fe972113 cmd, core, eth, metrics, p2p: require enabling metrics há 10 anos atrás
params c26c8d3a44 Read most protocol params from common/params.json há 10 anos atrás
pow b1cc9cdc74 Integrate new ethash API and change geth makedag cmd há 10 anos atrás
rlp 8743cc1c1c rlp: add ListSize há 10 anos atrás
rpc e8c1399bbf fixed unittest after new implementation há 10 anos atrás
tests 4c490db6af Use uint64 for block header timestamp há 10 anos atrás
trie c850c41ec1 trie: Implemented a batch write approach for flushing há 10 anos atrás
whisper 6a2fec5309 p2p, whisper: use glog for peer-level logging há 10 anos atrás
xeth 29e2fb38f8 core, miner: miner header validation, transaction & receipt writing há 10 anos atrás
.gitignore 97c37356fd updated ignore há 10 anos atrás
.gitmodules 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js há 10 anos atrás
.mailmap f23529c5cd General repo cleanup há 10 anos atrás
.travis.yml c6dbe9dc07 Travis and README cleanup há 10 anos atrás
LICENSE c173e9f4ab MIT -> LGPL há 11 anos atrás
Makefile 36a6b16a3b removed console command há 10 anos atrás
README.md c6dbe9dc07 Travis and README cleanup há 10 anos atrás
update-license.go 899df30c24 fixed identing há 10 anos atrás

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:

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