Geen omschrijving

obscuren 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js 10 jaren geleden
Godeps 525cefa37a updated ethash 10 jaren geleden
_data 8df689bd44 Chain tests 11 jaren geleden
accounts b375bbee5f settable etherbase 10 jaren geleden
build 48f23746f0 Makefile: for non-gophers 10 jaren geleden
cmd 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js 10 jaren geleden
common c273ed7d82 Moved leveldb update loop to eth/backend 10 jaren geleden
compression ddca18638f update imports order per goimports 11 jaren geleden
core c273ed7d82 Moved leveldb update loop to eth/backend 10 jaren geleden
crypto 958c04e79a doc: crypto/secp256k1 GMP dependency package name. 10 jaren geleden
docker 33083e6f6c Revert "Revert "refactor Dockerfile"" 10 jaren geleden
errs 3d57e377a4 blockpool stability fixes: 10 jaren geleden
eth 516f49c812 eth: cleanup 10 jaren geleden
ethdb c273ed7d82 Moved leveldb update loop to eth/backend 10 jaren geleden
event 09147a50ed Improved tx pool to ignore invalid transactions 10 jaren geleden
generators c26c8d3a44 Read most protocol params from common/params.json 10 jaren geleden
jsre 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js 10 jaren geleden
logger eaf73b55bc miner: moved bad uncle logging to ridiculous log level. Closes #720 10 jaren geleden
miner 48135657c4 miner: show error message for gas limit per account 10 jaren geleden
p2p 635b66acdc p2p: return zero node from Self if the server is not running 10 jaren geleden
params c26c8d3a44 Read most protocol params from common/params.json 10 jaren geleden
pow 65eee2006d pow/ezp: use common.Hash 10 jaren geleden
rlp 7180699d40 rlp: require declared number of input elements for array types 10 jaren geleden
rpc 67cc80ba66 Merge pull request #786 from tgerring/issue739 10 jaren geleden
tests 7a223721a5 Add block header validations for block tests 10 jaren geleden
trie bbe795455a Secure trie shakey / key matching 10 jaren geleden
ui 1a4cfc173e whisper, xeth/whisper, ui/qt/qwhispe: fix API polish breakages 10 jaren geleden
whisper 509d0a8d78 whisper: fix comment for rlpenv 10 jaren geleden
xeth 4feb5f6f9c xeth, miner: updated some logging 10 jaren geleden
.gitignore 48f23746f0 Makefile: for non-gophers 10 jaren geleden
.gitmodules 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js 10 jaren geleden
.mailmap f23529c5cd General repo cleanup 10 jaren geleden
.travis.yml 2ca6a800ad Remove old go cover location 10 jaren geleden
LICENSE c173e9f4ab MIT -> LGPL 11 jaren geleden
Makefile 48f23746f0 Makefile: for non-gophers 10 jaren geleden
README.md 154570ebd3 Cleanup README developer info 10 jaren geleden
gocoverage.sh d8f7cb2f55 Don't print per-function testing results 10 jaren geleden
update-license.go f23529c5cd General repo cleanup 10 jaren geleden

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

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.

See Developers' Guide for more details on configuring your environment, testing, and dependency management.