Нема описа

Jeffrey Wilcke 6f5c6150b7 Merge pull request #1255 from obscuren/chain-proc-interupt пре 10 година
Godeps 6a831ca015 Godeps: update github.com/huin/goupnp to 5cff77a69fb22f5 пре 10 година
_data 8df689bd44 Chain tests пре 11 година
accounts 1fa48bc5e7 Introduced default unlock duration when an account is unlocked from the console пре 10 година
build aa03e53ca8 Use Makefile for Travis tests пре 10 година
cmd 55a796b7c3 removed obsolete console flag пре 10 година
common 359e6414e5 fixed windows ipc path issue пре 10 година
compression ddca18638f update imports order per goimports пре 11 година
core 6f5c6150b7 Merge pull request #1255 from obscuren/chain-proc-interupt пре 10 година
crypto 0f51ee6c88 crypto: return common.Address rather than raw bytes пре 10 година
docker 33083e6f6c Revert "Revert "refactor Dockerfile"" пре 10 година
errs 3d57e377a4 blockpool stability fixes: пре 10 година
eth 90c4493a10 eth, core: interupt the chain processing on stop пре 10 година
ethdb 020006a8ed common, ethdb: removed caching and LastTD пре 10 година
event 4541c22964 event/filter: hack around data race in the test пре 10 година
generators b79dd188d9 replaced several path.* with filepath.* which is platform independent пре 10 година
jsre 5f8e5a4875 upgrade web3.js with _extend support пре 10 година
logger eaf73b55bc miner: moved bad uncle logging to ridiculous log level. Closes #720 пре 10 година
miner cf3aabb9d3 miner: update gas used after tx proc for pending block пре 10 година
p2p a8e4cb6dfe p2p/discover: use separate rand.Source instances in tests пре 10 година
params c26c8d3a44 Read most protocol params from common/params.json пре 10 година
pow b1cc9cdc74 Integrate new ethash API and change geth makedag cmd пре 10 година
rlp dd49c8e43d rlp: fix list bounds check overflow (found by go-fuzz) пре 10 година
rpc b3c07f167f fixed incomplete merge action пре 10 година
tests 6609d45ef4 Merge pull request #1228 from obscuren/vm-optimisations пре 10 година
trie bbe795455a Secure trie shakey / key matching пре 10 година
ui db615a85ec ui/qt/qwhisper, whisper, xeth: polish topic filter, fix wildcards пре 10 година
whisper 6a2fec5309 p2p, whisper: use glog for peer-level logging пре 10 година
xeth bc6031e7bb core, xeth: moved nonce management burden from xeth to txpool пре 10 година
.gitignore 97c37356fd updated ignore пре 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 a1a475fb92 added console command пре 10 година
README.md 7da8ebdfd0 Fixed readme links and description пре 10 година
update-license.go 899df30c24 fixed identing пре 10 година

README.md

Ethereum Go

Ethereum Go Client © 2014 Jeffrey Wilcke.

      | Linux   | OSX | ARM | Windows | Tests

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

Bugs Stories in Ready Stories in Progress Gitter

Automated development builds

The following builds are build automatically by our build servers after each push to the develop branch.

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.