Нема описа

Felix Lange 6c41e675ec p2p: resolve incomplete dial targets пре 10 година
Godeps f3aac71fad rpc/v2: optionally passing context argument to rpc v2 api methods пре 10 година
_data 8df689bd44 Chain tests пре 11 година
accounts fa187a366d Merge pull request #2035 from bas-vk/rcp-v2-rebase пре 10 година
build ec6a548ee3 all: Add GPU mining, disabled by default пре 10 година
cmd b9aedeab0b Merge pull request #2072 from karalabe/admin-debug-apis пре 10 година
common eae81465c1 rpc: new RPC implementation with pub/sub support пре 10 година
compression bfbcfbe4a9 all: fix license headers one more time пре 10 година
core 975c591261 core: tx pool skip price validation for "owned" transactions пре 10 година
crypto 787d71d659 Merge pull request #2056 from fjl/fix-account-format пре 10 година
docker 57ab147388 update Dockerfile, remove supervisord and unattended-upgrades пре 10 година
errs bfbcfbe4a9 all: fix license headers one more time пре 10 година
eth 82a024d425 Merge pull request #1997 from zsfelfoldi/gasprice2 пре 10 година
ethdb 5b0ee8ec30 core, eth, trie: fix data races and merge/review issues пре 10 година
event 8e2bf42c46 event/filter: fix data race in the test пре 10 година
generators bfbcfbe4a9 all: fix license headers one more time пре 10 година
jsre de75d542f3 Merge pull request #1999 from karalabe/javascript-timer-argcheck пре 10 година
logger bfbcfbe4a9 all: fix license headers one more time пре 10 година
metrics c51e153b5c eth, metrics, p2p: prepare metrics and net packets to eth/62 пре 10 година
miner eae81465c1 rpc: new RPC implementation with pub/sub support пре 10 година
node d8370a4e15 core, eth, node, rpc: port the admin and debug API пре 10 година
p2p 6c41e675ec p2p: resolve incomplete dial targets пре 10 година
params 26c6e3b206 miner: gas limit strategy, target 3141592 & def gas price 50 Shannon пре 10 година
pow ec6a548ee3 all: Add GPU mining, disabled by default пре 10 година
rlp fc8b246109 rlp: move ListSize to raw.go пре 10 година
rpc e640861704 Merge pull request #2061 from zsfelfoldi/rpc-context пре 10 година
tests 1e806c4c77 cmd, common, core, eth, node, rpc, tests, whisper, xeth: use protocol stacks пре 10 година
trie 52904ae32f trie: added error handling пре 10 година
whisper fa187a366d Merge pull request #2035 from bas-vk/rcp-v2-rebase пре 10 година
xeth 975c591261 core: tx pool skip price validation for "owned" transactions пре 10 година
.gitattributes 803096ca0f .gitattributes: add пре 10 година
.gitignore 97c37356fd updated ignore пре 10 година
.gitmodules 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js пре 10 година
.mailmap b1af5af30e Adjust .mailmap пре 10 година
.travis.yml 02356b36d6 crypto/secp256k1: remove dependency on libgmp пре 10 година
AUTHORS ea54283b30 all: update license information пре 10 година
CONTRIBUTING.md 18d450b2d0 Updated README, Added CONTRIBUTING пре 10 година
COPYING ea54283b30 all: update license information пре 10 година
COPYING.LESSER ea54283b30 all: update license information пре 10 година
Makefile 03f090b30b Makefile, cmd/geth: support building Android archives пре 10 година
README.md 02356b36d6 crypto/secp256k1: remove dependency on libgmp пре 10 година
VERSION 5ff0814b1f VERSION, cmd/geth: bumped version 1.4.0 пре 10 година

README.md

Ethereum Go

Official golang implementation of the Ethereum protocol

      | Linux   | OSX | ARM | Windows | Tests

----------|---------|-----|-----|---------|------ develop | | | | | codecov.io master | | | | | codecov.io

API Reference 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 both a Go and a C compiler. 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:

Command
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: /path/to/test.json > ethtest --test BlockTests --stdin.
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"
rlpdump prints RLP structures

Command line options

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.