Aucune description

Bas van Kervel b79dd188d9 replaced several path.* with filepath.* which is platform independent il y a 10 ans
Godeps 0214cbe0fb Merge pull request #863 from karalabe/ordered-block-download il y a 10 ans
_data 8df689bd44 Chain tests il y a 11 ans
accounts b375bbee5f settable etherbase il y a 10 ans
build aa03e53ca8 Use Makefile for Travis tests il y a 10 ans
cmd b79dd188d9 replaced several path.* with filepath.* which is platform independent il y a 10 ans
common b79dd188d9 replaced several path.* with filepath.* which is platform independent il y a 10 ans
compression ddca18638f update imports order per goimports il y a 11 ans
core b79dd188d9 replaced several path.* with filepath.* which is platform independent il y a 10 ans
crypto b79dd188d9 replaced several path.* with filepath.* which is platform independent il y a 10 ans
docker 33083e6f6c Revert "Revert "refactor Dockerfile"" il y a 10 ans
errs 3d57e377a4 blockpool stability fixes: il y a 10 ans
eth b79dd188d9 replaced several path.* with filepath.* which is platform independent il y a 10 ans
ethdb b79dd188d9 replaced several path.* with filepath.* which is platform independent il y a 10 ans
event 7e160a677d xeth, core, event/filter, rpc: new block and transaction filters il y a 10 ans
generators b79dd188d9 replaced several path.* with filepath.* which is platform independent il y a 10 ans
jsre 62dd9833ec Merge branch 'develop' of github.com:ethereum/go-ethereum into develop il y a 10 ans
logger eaf73b55bc miner: moved bad uncle logging to ridiculous log level. Closes #720 il y a 10 ans
miner 97dd4551ef miner, cmd/geth: miner will not ignored owned account transactions il y a 10 ans
p2p b79dd188d9 replaced several path.* with filepath.* which is platform independent il y a 10 ans
params c26c8d3a44 Read most protocol params from common/params.json il y a 10 ans
pow b1cc9cdc74 Integrate new ethash API and change geth makedag cmd il y a 10 ans
rlp dd49c8e43d rlp: fix list bounds check overflow (found by go-fuzz) il y a 10 ans
rpc 21e52efdfe cmd/geth, miner, backend, xeth: Fixed miner threads to be settable il y a 10 ans
tests b79dd188d9 replaced several path.* with filepath.* which is platform independent il y a 10 ans
trie bbe795455a Secure trie shakey / key matching il y a 10 ans
ui db615a85ec ui/qt/qwhisper, whisper, xeth: polish topic filter, fix wildcards il y a 10 ans
whisper 6a2fec5309 p2p, whisper: use glog for peer-level logging il y a 10 ans
xeth 21e52efdfe cmd/geth, miner, backend, xeth: Fixed miner threads to be settable il y a 10 ans
.gitignore 97c37356fd updated ignore il y a 10 ans
.gitmodules 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js il y a 10 ans
.mailmap f23529c5cd General repo cleanup il y a 10 ans
.travis.yml aa03e53ca8 Use Makefile for Travis tests il y a 10 ans
LICENSE c173e9f4ab MIT -> LGPL il y a 11 ans
Makefile aa03e53ca8 Use Makefile for Travis tests il y a 10 ans
README.md 26fbea5cb7 README: simplify build instructions il y a 10 ans
update-license.go b79dd188d9 replaced several path.* with filepath.* which is platform independent il y a 10 ans

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.