Тайлбар байхгүй

Felix Lange aa03e53ca8 Use Makefile for Travis tests 10 жил өмнө
Godeps 7e3b080f85 godeps: update leveldb and snappy, dump serpent-go 10 жил өмнө
_data 8df689bd44 Chain tests 11 жил өмнө
accounts b375bbee5f settable etherbase 10 жил өмнө
build aa03e53ca8 Use Makefile for Travis tests 10 жил өмнө
cmd 72d8878084 cmd/mist: always enable whisper 10 жил өмнө
common 3bb6da9bd3 natspec: disabled natspec test 10 жил өмнө
compression ddca18638f update imports order per goimports 11 жил өмнө
core 145e02fc54 core, miner: added value check on tx validation 10 жил өмнө
crypto 34c94d5fcd Add loading of block test privkey if present 10 жил өмнө
docker 33083e6f6c Revert "Revert "refactor Dockerfile"" 10 жил өмнө
errs 3d57e377a4 blockpool stability fixes: 10 жил өмнө
eth 91cb8cdd2a Merge pull request #793 from karalabe/discovery-node-cache 10 жил өмнө
ethdb c273ed7d82 Moved leveldb update loop to eth/backend 10 жил өмнө
event 09147a50ed Improved tx pool to ignore invalid transactions 10 жил өмнө
generators c26c8d3a44 Read most protocol params from common/params.json 10 жил өмнө
jsre a237ff65ea web3: updated 10 жил өмнө
logger eaf73b55bc miner: moved bad uncle logging to ridiculous log level. Closes #720 10 жил өмнө
miner 145e02fc54 core, miner: added value check on tx validation 10 жил өмнө
p2p b569550a39 p2p/discover: fix api issues caused by leveldb update 10 жил өмнө
params c26c8d3a44 Read most protocol params from common/params.json 10 жил өмнө
pow 65eee2006d pow/ezp: use common.Hash 10 жил өмнө
rlp dd49c8e43d rlp: fix list bounds check overflow (found by go-fuzz) 10 жил өмнө
rpc 99027c79fe Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop 10 жил өмнө
tests 34c94d5fcd Add loading of block test privkey if present 10 жил өмнө
trie bbe795455a Secure trie shakey / key matching 10 жил өмнө
ui db615a85ec ui/qt/qwhisper, whisper, xeth: polish topic filter, fix wildcards 10 жил өмнө
whisper 2b9fd6b40a whisper: add full filter test suite 10 жил өмнө
xeth 99027c79fe Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop 10 жил өмнө
.gitignore aa03e53ca8 Use Makefile for Travis tests 10 жил өмнө
.gitmodules 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js 10 жил өмнө
.mailmap f23529c5cd General repo cleanup 10 жил өмнө
.travis.yml aa03e53ca8 Use Makefile for Travis tests 10 жил өмнө
LICENSE c173e9f4ab MIT -> LGPL 11 жил өмнө
Makefile aa03e53ca8 Use Makefile for Travis tests 10 жил өмнө
README.md 26fbea5cb7 README: simplify build instructions 10 жил өмнө
update-license.go f23529c5cd General repo cleanup 10 жил өмнө

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.