説明なし

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