Sem descrição

obscuren b71091e337 eth, eth/downloader, miner: use download events to check miner start há 10 anos atrás
Godeps 7fa740996c Merge pull request #960 from fjl/nat-fixes 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 aa03e53ca8 Use Makefile for Travis tests há 10 anos atrás
cmd ff87c241a7 Merge pull request #973 from bas-vk/issue972 há 10 anos atrás
common e389585f1f Change default keystore dir há 10 anos atrás
compression ddca18638f update imports order per goimports há 11 anos atrás
core b71091e337 eth, eth/downloader, miner: use download events to check miner start há 10 anos atrás
crypto 56a5592ea0 Update keystore code comments 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 b71091e337 eth, eth/downloader, miner: use download events to check miner start há 10 anos atrás
ethdb 95773b9673 removed redundant newlines in import block há 10 anos atrás
event 7e160a677d xeth, core, event/filter, rpc: new block and transaction filters há 10 anos atrás
generators b79dd188d9 replaced several path.* with filepath.* which is platform independent há 10 anos atrás
jsre 62dd9833ec Merge branch 'develop' of github.com:ethereum/go-ethereum into develop há 10 anos atrás
logger eaf73b55bc miner: moved bad uncle logging to ridiculous log level. Closes #720 há 10 anos atrás
miner b71091e337 eth, eth/downloader, miner: use download events to check miner start há 10 anos atrás
p2p 90b94e64fc Merge pull request #971 from fjl/p2p-limit-tweaks 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 dd49c8e43d rlp: fix list bounds check overflow (found by go-fuzz) há 10 anos atrás
rpc 037772fc07 fix hex conversion bug in RPC for byte slices há 10 anos atrás
tests e389585f1f Change default keystore dir há 10 anos atrás
trie bbe795455a Secure trie shakey / key matching há 10 anos atrás
ui db615a85ec ui/qt/qwhisper, whisper, xeth: polish topic filter, fix wildcards há 10 anos atrás
whisper 6a2fec5309 p2p, whisper: use glog for peer-level logging há 10 anos atrás
xeth 2c1b0ff17e Update key store to new spec but keep address field for now 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 aa03e53ca8 Use Makefile for Travis tests há 10 anos atrás
LICENSE c173e9f4ab MIT -> LGPL há 11 anos atrás
Makefile aa03e53ca8 Use Makefile for Travis tests há 10 anos atrás
README.md 26fbea5cb7 README: simplify build instructions 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 | Windows | Tests

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

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