Нет описания

Felix Lange 48f23746f0 Makefile: for non-gophers 10 лет назад
Godeps 525cefa37a updated ethash 10 лет назад
_data 8df689bd44 Chain tests 11 лет назад
accounts b375bbee5f settable etherbase 10 лет назад
blockpool 3d57e377a4 blockpool stability fixes: 10 лет назад
build 48f23746f0 Makefile: for non-gophers 10 лет назад
cmd f46af4508b geth: fixed failing cli tests 10 лет назад
common 52c874a609 common: Added debug reporter 10 лет назад
compression ddca18638f update imports order per goimports 11 лет назад
core 84f1af6413 core: merge using equal block numbers rather than the current block 10 лет назад
crypto ef393da933 removed utility function and implemented hex conversation in crypto functions 10 лет назад
errs 3d57e377a4 blockpool stability fixes: 10 лет назад
eth eac2df02d1 downloader: fixed a typo 10 лет назад
ethdb 7f32a08b60 Queued level db writes and batch writes. Closes #647 10 лет назад
event 09147a50ed Improved tx pool to ignore invalid transactions 10 лет назад
generators c26c8d3a44 Read most protocol params from common/params.json 10 лет назад
jsre ec9fbf09aa Added some quotes .... 10 лет назад
logger eaf73b55bc miner: moved bad uncle logging to ridiculous log level. Closes #720 10 лет назад
miner 576393550d add extra space to miner icon 10 лет назад
p2p 5528abc795 p2p: fix the dial timer 10 лет назад
params c26c8d3a44 Read most protocol params from common/params.json 10 лет назад
pow 65eee2006d pow/ezp: use common.Hash 10 лет назад
rlp 59597d23a5 Reject integers w/ appended zero's 10 лет назад
rpc c39a7b5c0d Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop 10 лет назад
tests c617a6ec79 Fixes for TransactionTests 10 лет назад
trie bbe795455a Secure trie shakey / key matching 10 лет назад
ui 1a4cfc173e whisper, xeth/whisper, ui/qt/qwhispe: fix API polish breakages 10 лет назад
whisper 4afc22ba6e whisper: cleanup lefover scoping 10 лет назад
xeth 1a4cfc173e whisper, xeth/whisper, ui/qt/qwhispe: fix API polish breakages 10 лет назад
.gitignore 48f23746f0 Makefile: for non-gophers 10 лет назад
.gitmodules f23529c5cd General repo cleanup 10 лет назад
.mailmap f23529c5cd General repo cleanup 10 лет назад
.travis.yml 2ca6a800ad Remove old go cover location 10 лет назад
Dockerfile eb79938060 Docker rename ethereum to geth 10 лет назад
LICENSE c173e9f4ab MIT -> LGPL 11 лет назад
Makefile 48f23746f0 Makefile: for non-gophers 10 лет назад
README.md 3a33428578 Fix links 10 лет назад
gocoverage.sh d8f7cb2f55 Don't print per-function testing results 10 лет назад
update-license.go f23529c5cd General repo cleanup 10 лет назад

README.md

Ethereum Go

Ethereum Go Client © 2014 Jeffrey Wilcke.

      | Linux   | OSX | Windows | Tests

----------|---------|-----|---------|------ develop | | | N/A | Coverage Status master | | | N/A | Coverage Status

Bugs Stories in Ready Stories in Progress Gitter

Build

Mist (GUI):

go get github.com/ethereum/go-ethereum/cmd/mist

Geth (CLI):

go get github.com/ethereum/go-ethereum/cmd/geth

As of POC-8, go-ethereum uses Godep to manage dependencies. Assuming you have your environment all set up, switch to the go-ethereum repository root folder, and build/install the executable you need:

Mist (GUI):

godep go build -v ./cmd/mist

Geth (CLI):

godep go build -v ./cmd/geth

Instead of build, you can use install which will also install the resulting binary.

For prerequisites and detailed build instructions please see the Wiki

If you intend to develop on go-ethereum, check the Developers' Guide

Automated (dev) builds

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 converts a rlp stream to interface{}.

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.

For dependency management, we use godep. After installing with go get github.com/tools/godep, run godep restore to ensure that changes to other repositories do not break the build. To update a dependency version (for example, to include a new upstream fix), run go get -u <foo/bar> then godep update <foo/...>. To track a new dependency, add it to the project as normal than run godep save ./.... Changes to the Godeps folder: should be manually verified then commited.

To make life easier try git flow it sets this all up and streamlines your work flow.

See Developers' Guide