Geen omschrijving

Felix Lange 6c27e2aaf6 core: add bad block for the 'missing nonce check' fork 10 jaren geleden
Godeps 6a831ca015 Godeps: update github.com/huin/goupnp to 5cff77a69fb22f5 10 jaren geleden
_data 8df689bd44 Chain tests 11 jaren geleden
accounts 1fa48bc5e7 Introduced default unlock duration when an account is unlocked from the console 10 jaren geleden
build aa03e53ca8 Use Makefile for Travis tests 10 jaren geleden
cmd 43ceb0f5c7 cmd/geth: version bump 0.9.27 10 jaren geleden
common 2bb0e48a7b skipped failing natspec tests 10 jaren geleden
compression ddca18638f update imports order per goimports 11 jaren geleden
core 6c27e2aaf6 core: add bad block for the 'missing nonce check' fork 10 jaren geleden
crypto 0f51ee6c88 crypto: return common.Address rather than raw bytes 10 jaren geleden
docker 33083e6f6c Revert "Revert "refactor Dockerfile"" 10 jaren geleden
errs 3d57e377a4 blockpool stability fixes: 10 jaren geleden
eth b94a76d17e Merge pull request #1189 from karalabe/downloader-polishes 10 jaren geleden
ethdb 020006a8ed common, ethdb: removed caching and LastTD 10 jaren geleden
event 7e160a677d xeth, core, event/filter, rpc: new block and transaction filters 10 jaren geleden
generators b79dd188d9 replaced several path.* with filepath.* which is platform independent 10 jaren geleden
jsre 598e454d46 cmd/geth: updated web3 10 jaren geleden
logger eaf73b55bc miner: moved bad uncle logging to ridiculous log level. Closes #720 10 jaren geleden
miner d09a6e5421 core, eth, miner: moved nonce management to tx pool. 10 jaren geleden
p2p fc6a5ae3ec p2p/nat: add timeout for UPnP SOAP requests 10 jaren geleden
params c26c8d3a44 Read most protocol params from common/params.json 10 jaren geleden
pow b1cc9cdc74 Integrate new ethash API and change geth makedag cmd 10 jaren geleden
rlp dd49c8e43d rlp: fix list bounds check overflow (found by go-fuzz) 10 jaren geleden
rpc e221a449e0 cmd/geth, jsre, rpc: run all JS code on the event loop 10 jaren geleden
tests 246db4250b tests: use state logs instead own kept logs 10 jaren geleden
trie bbe795455a Secure trie shakey / key matching 10 jaren geleden
ui db615a85ec ui/qt/qwhisper, whisper, xeth: polish topic filter, fix wildcards 10 jaren geleden
whisper 6a2fec5309 p2p, whisper: use glog for peer-level logging 10 jaren geleden
xeth 36c0db2ac9 xeth: use the correct nonce for creating transactions 10 jaren geleden
.gitignore 97c37356fd updated ignore 10 jaren geleden
.gitmodules 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js 10 jaren geleden
.mailmap f23529c5cd General repo cleanup 10 jaren geleden
.travis.yml aa03e53ca8 Use Makefile for Travis tests 10 jaren geleden
LICENSE c173e9f4ab MIT -> LGPL 11 jaren geleden
Makefile aa03e53ca8 Use Makefile for Travis tests 10 jaren geleden
README.md 26fbea5cb7 README: simplify build instructions 10 jaren geleden
update-license.go 899df30c24 fixed identing 10 jaren geleden

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.