Brak opisu

zelig 03bf902b92 compiler, cli/js: fix solidity compiler tests failing when a different version of solc installed 10 lat temu
Godeps 0214cbe0fb Merge pull request #863 from karalabe/ordered-block-download 10 lat temu
_data 8df689bd44 Chain tests 11 lat temu
accounts b375bbee5f settable etherbase 10 lat temu
build aa03e53ca8 Use Makefile for Travis tests 10 lat temu
cmd 03bf902b92 compiler, cli/js: fix solidity compiler tests failing when a different version of solc installed 10 lat temu
common 03bf902b92 compiler, cli/js: fix solidity compiler tests failing when a different version of solc installed 10 lat temu
compression ddca18638f update imports order per goimports 11 lat temu
core 3c6c891680 core: optimise pending transaction processing 10 lat temu
crypto 34c94d5fcd Add loading of block test privkey if present 10 lat temu
docker 33083e6f6c Revert "Revert "refactor Dockerfile"" 10 lat temu
errs 3d57e377a4 blockpool stability fixes: 10 lat temu
eth 48bd48876c eth, eth/downloader: moved pending queue error message to debug 10 lat temu
ethdb 0e211ae203 ethdb: set open file limit to 128 for all leveldbs 10 lat temu
event 7e160a677d xeth, core, event/filter, rpc: new block and transaction filters 10 lat temu
generators c26c8d3a44 Read most protocol params from common/params.json 10 lat temu
jsre 62dd9833ec Merge branch 'develop' of github.com:ethereum/go-ethereum into develop 10 lat temu
logger eaf73b55bc miner: moved bad uncle logging to ridiculous log level. Closes #720 10 lat temu
miner 97dd4551ef miner, cmd/geth: miner will not ignored owned account transactions 10 lat temu
p2p d4f0a67323 p2p: drop connections with no matching protocols 10 lat temu
params c26c8d3a44 Read most protocol params from common/params.json 10 lat temu
pow b1cc9cdc74 Integrate new ethash API and change geth makedag cmd 10 lat temu
rlp dd49c8e43d rlp: fix list bounds check overflow (found by go-fuzz) 10 lat temu
rpc 21e52efdfe cmd/geth, miner, backend, xeth: Fixed miner threads to be settable 10 lat temu
tests 7eed47fad5 miner, tests: fixed block test 10 lat temu
trie bbe795455a Secure trie shakey / key matching 10 lat temu
ui db615a85ec ui/qt/qwhisper, whisper, xeth: polish topic filter, fix wildcards 10 lat temu
whisper 6a2fec5309 p2p, whisper: use glog for peer-level logging 10 lat temu
xeth 21e52efdfe cmd/geth, miner, backend, xeth: Fixed miner threads to be settable 10 lat temu
.gitignore 97c37356fd updated ignore 10 lat temu
.gitmodules 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js 10 lat temu
.mailmap f23529c5cd General repo cleanup 10 lat temu
.travis.yml aa03e53ca8 Use Makefile for Travis tests 10 lat temu
LICENSE c173e9f4ab MIT -> LGPL 11 lat temu
Makefile aa03e53ca8 Use Makefile for Travis tests 10 lat temu
README.md 26fbea5cb7 README: simplify build instructions 10 lat temu
update-license.go f23529c5cd General repo cleanup 10 lat temu

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.