Aucune description

Gustav Simonsson bf879ef230 core/state: test formatting adhering to Go convention il y a 10 ans
Godeps 540eb3d02d Pull in ethash and go-isatty updates il y a 10 ans
_data 8df689bd44 Chain tests il y a 11 ans
accounts 98db08c42f Merge pull request #1548 from fjl/accounts-test-deflake il y a 10 ans
build cfd84a6ad9 build: avoid -X separator warning with Go >= 1.5 il y a 10 ans
cmd f69121357d cmd/geth Autocompletion bugfix which let the console crash il y a 10 ans
common 101418b275 common/compiler: fix #1598, expose solidity errors il y a 10 ans
compression bfbcfbe4a9 all: fix license headers one more time il y a 10 ans
core bf879ef230 core/state: test formatting adhering to Go convention il y a 10 ans
crypto d4da2f630e crypto: remove obsolete key files il y a 10 ans
docker 33083e6f6c Revert "Revert "refactor Dockerfile"" il y a 10 ans
errs bfbcfbe4a9 all: fix license headers one more time il y a 10 ans
eth 1f1d73ab74 eth/downloader: fix race causing occasional test failure il y a 10 ans
ethdb 42f44dda54 eth, eth/downloader: handle header requests, table driven proto tests il y a 10 ans
event bfbcfbe4a9 all: fix license headers one more time il y a 10 ans
generators bfbcfbe4a9 all: fix license headers one more time il y a 10 ans
jsre 1086e2f298 jsre: fix annoying indentation when printing arrays of objects il y a 10 ans
logger bfbcfbe4a9 all: fix license headers one more time il y a 10 ans
metrics c51e153b5c eth, metrics, p2p: prepare metrics and net packets to eth/62 il y a 10 ans
miner 0fda4c4e15 fix block time issue il y a 10 ans
p2p c51e153b5c eth, metrics, p2p: prepare metrics and net packets to eth/62 il y a 10 ans
params 26c6e3b206 miner: gas limit strategy, target 3141592 & def gas price 50 Shannon il y a 10 ans
pow bfbcfbe4a9 all: fix license headers one more time il y a 10 ans
rlp 1d2420323c rlp: add support for boolean encoding/decoding il y a 10 ans
rpc 4ea81f170a rpc/comms: fix bug attaching the console over http il y a 10 ans
tests fe8093b71f Add TestBcForkUncleTests and update JSON files il y a 10 ans
trie b8ca0a830e eth, trie: removed key prefixing from state entries & merge db fix il y a 10 ans
whisper bfbcfbe4a9 all: fix license headers one more time il y a 10 ans
xeth 7324176f70 Add tests for uncle timestamps and refactor timestamp type il y a 10 ans
.gitattributes 803096ca0f .gitattributes: add il y a 10 ans
.gitignore 97c37356fd updated ignore il y a 10 ans
.gitmodules 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js il y a 10 ans
.mailmap b1af5af30e Adjust .mailmap il y a 10 ans
.travis.yml cc87551edc Codecov integration il y a 10 ans
AUTHORS ea54283b30 all: update license information il y a 10 ans
CONTRIBUTING.md 18d450b2d0 Updated README, Added CONTRIBUTING il y a 10 ans
COPYING ea54283b30 all: update license information il y a 10 ans
COPYING.LESSER ea54283b30 all: update license information il y a 10 ans
Makefile 846f34f78b core/vm, tests: implemented semi-jit vm il y a 10 ans
README.md 18d450b2d0 Updated README, Added CONTRIBUTING il y a 10 ans

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 two external dependencies, Go and GMP. 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.