Keine Beschreibung

obscuren a7ad9c309b Merge branch 'develop' into conversion vor 10 Jahren
Godeps 01ff0b3176 fixed ethash vor 10 Jahren
_data 8df689bd44 Chain tests vor 11 Jahren
accounts b523441361 Moved ethutil => common vor 10 Jahren
blockpool 66b29899c4 use common.Hash as pool key, no string conversion needed vor 10 Jahren
cmd a7ad9c309b Merge branch 'develop' into conversion vor 10 Jahren
common 28ddc16a9b Merge remote-tracking branch 'ethereum/conversion' into conversion vor 10 Jahren
compression ddca18638f update imports order per goimports vor 11 Jahren
core c28116cb3b Fixed incorrect recipient derived vor 10 Jahren
crypto c388e7eac0 crypto: remove use of common.Value.Encode vor 10 Jahren
errs d46c7bcaf9 errs pkg for error code based errors vor 10 Jahren
eth 7c4ff3abb4 eth: enable whisper again vor 10 Jahren
ethdb c161d73d42 common: drop accessors for Value.Val vor 10 Jahren
event 28e1971272 Merge branch 'rpcxeth' into rpcfrontier vor 10 Jahren
jsre b4060da9eb ethutil -> common vor 10 Jahren
logger 9edb9a21bc Add json LogSystem #538 vor 10 Jahren
miner ce862ee758 Removed some comments vor 10 Jahren
p2p a7ad9c309b Merge branch 'develop' into conversion vor 10 Jahren
pow 65eee2006d pow/ezp: use common.Hash vor 10 Jahren
rlp a829a56587 rlp: add Stream.Raw vor 10 Jahren
rpc 54dac59285 wip vor 10 Jahren
state 4300f2a0fa Fixed state tests vor 10 Jahren
tests 013427bde2 Merge branch 'develop' into conversion vor 10 Jahren
trie cf45b939a0 fixed tests vor 10 Jahren
ui 7330c97b5b DRY up the use of toHex in the project and move it to common vor 10 Jahren
vm abce6804a0 Right pad bytes to prevent future programmers making bugs vor 10 Jahren
whisper 069c87b960 whisper: use common.Hash vor 10 Jahren
xeth ce862ee758 Removed some comments vor 10 Jahren
.gitignore 5dfc67efbd ignore vor 10 Jahren
.gitmodules f7c3c7eda4 Update ethereum.js vor 10 Jahren
.mailmap ec7cb9981c add license tool and initial mailmap vor 10 Jahren
.travis.yml ce2b2422d6 Update Go and Qt versions vor 10 Jahren
Dockerfile 1513413412 Dockerfile: use fast™ build steps vor 10 Jahren
LICENSE c173e9f4ab MIT -> LGPL vor 11 Jahren
README.md c87cc59bdf Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop vor 10 Jahren
gocoverage.sh d8f7cb2f55 Don't print per-function testing results vor 10 Jahren
update-license.go 81dea2d8e7 update-license.go: add blank line after build tag vor 10 Jahren

README.md

Ethereum Go

Ethereum Go Client © 2014 Jeffrey Wilcke.

      | Linux   | OSX | Windows | Tests

----------|---------|-----|---------|------ develop | | | N/A | master | | | N/A |

Bugs Stories in Ready Stories in Progress Gitter

Build

Mist (GUI):

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

Ethereum (CLI):

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

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

Ethereum (CLI):

godep go build -v ./cmd/ethereum

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)
  • ethereum 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 ethereum can be configured via command line options, environment variables and config files.

To get the options available:

ethereum -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