Тайлбар байхгүй

Péter Szilágyi 6a00a3ade1 Makefile: go build instead of install (solves cross compile issues) 9 жил өмнө
.github a0e2e22a4f templates: added issue template 9 жил өмнө
Godeps ef63e9af55 Godeps: add github.com/rjeczalik/notify 9 жил өмнө
_data 8df689bd44 Chain tests 11 жил өмнө
accounts 586eddfd09 release, all: integrate the release service into geth 9 жил өмнө
build 728ad6f47d build: tweak update-license.go 9 жил өмнө
cmd 14d5033c9d cmd/geth: fixed to use proper version string for output 9 жил өмнө
common a20d3fc362 common: Add tests for Address#UnmarshalJSON 9 жил өмнө
compression 436fc8d76a all: Rename crypto.Sha3{,Hash}() to crypto.Keccak256{,Hash}() 9 жил өмнө
containers 3ab1fb0215 Added Vagrantfile so that developers can spin up a VM to build geth 9 жил өмнө
core c74a575725 core: Provide a public accessor for ChainConfig 9 жил өмнө
crypto 6fdd0893c3 all: fix go vet warnings 9 жил өмнө
errs bfbcfbe4a9 all: fix license headers one more time 10 жил өмнө
eth 586eddfd09 release, all: integrate the release service into geth 9 жил өмнө
ethdb e90958cd29 cmd, eth, ethdb, node: prioritise chaindata for resources, bump cache 9 жил өмнө
event 8e2bf42c46 event/filter: fix data race in the test 10 жил өмнө
generators 6fdd0893c3 all: fix go vet warnings 9 жил өмнө
internal 844e911129 internal/debug: rename debug_trace to debug_goTrace 9 жил өмнө
jsre 87ae0df476 cmd/geth, jsre: improve the js command 9 жил өмнө
light d04a2e7557 all: update license information 9 жил өмнө
logger ebf3cf8f7d logger/glog: fix go vet issues 9 жил өмнө
metrics 6fdd0893c3 all: fix go vet warnings 9 жил өмнө
miner 6fdd0893c3 all: fix go vet warnings 9 жил өмнө
node 586eddfd09 release, all: integrate the release service into geth 9 жил өмнө
p2p 8110671960 p2p/discover: prevent bonding self 9 жил өмнө
params f0cbebb19f core: added basic chain configuration 9 жил өмнө
pow 6fdd0893c3 all: fix go vet warnings 9 жил өмнө
release 4536b993ff cmd/geth, release: polish and deploy live release contract 9 жил өмнө
rlp 6fdd0893c3 all: fix go vet warnings 9 жил өмнө
rpc a6ca8fd268 Merge pull request #2463 from fjl/rpc-context-key 9 жил өмнө
tests 6fdd0893c3 all: fix go vet warnings 9 жил өмнө
trie 6fdd0893c3 all: fix go vet warnings 9 жил өмнө
whisper 6197fbf8d7 Merge pull request #2458 from fjl/go-vet 9 жил өмнө
.gitattributes 803096ca0f .gitattributes: add 10 жил өмнө
.gitignore 3ab1fb0215 Added Vagrantfile so that developers can spin up a VM to build geth 9 жил өмнө
.gitmodules 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js 10 жил өмнө
.mailmap d04a2e7557 all: update license information 9 жил өмнө
.travis.yml 02356b36d6 crypto/secp256k1: remove dependency on libgmp 10 жил өмнө
AUTHORS d04a2e7557 all: update license information 9 жил өмнө
COPYING ea54283b30 all: update license information 10 жил өмнө
COPYING.LESSER ea54283b30 all: update license information 10 жил өмнө
Makefile 6a00a3ade1 Makefile: go build instead of install (solves cross compile issues) 9 жил өмнө
README.md b4fbcd5060 README: Polish up exec section, rewrite contrib and add license. 9 жил өмнө
VERSION 18580e152c VERSION, cmd/geth: bumped version 9 жил өмнө

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

The go-ethereum project comes with several wrappers/executables found in the cmd directory.

Command Description
geth Our main Ethereum CLI client. It is the entry point into the Ethereum network (main-, test- or private net), capable of running as a full node (default) archive node (retaining all historical state) or a light node (retrieving data live). It can be used by other processes as an gateway into the Ethereum network via JSON RPC endpoints exposed on top of HTTP, WebSocket and/or IPC transports. Please see our Command Line Options wiki page for details.
abigen Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages. It operates on plain Ethereum contract ABIs with expanded functionality if the contract bytecode is also available. However it also accepts Solidity source files, making development much more streamlined. Please see our Native DApps wiki page for details.
bootnode Stripped down version of our Ethereum client implementation that only takes part in the network node discovery protocol, but does not run any of the higher level application protocols. It can be used as a lightweight bootstrap node to aid in finding peers in private networks.
disasm Bytecode disassembler to convert EVM (Ethereum Virtual Machine) bytecode into more user friendly assembly-like opcodes (e.g. `echo "6001"
evm Developer utility version of the EVM (Ethereum Virtual Machine) that is capable of running bytecode snippets within a configurable environment and execution mode. Its purpose is to allow insolated, fine graned debugging of EVM opcodes (e.g. evm --code 60ff60ff --debug).
gethrpctest Developer utility tool to support our ethereum/rpc-test test suite which validates baseline conformity to the Ethereum JSON RPC specs. Please see the test suite's readme for details.
rlpdump Developer utility tool to convert binary RLP (Recursive Length Prefix) dumps (data encoding used by the Ethereum protocol both network as well as consensus wise) to user friendlier hierarchical representation (e.g. rlpdump --hex CE0183FFFFFFC4C304050583616263).

Contribution

Thank you for considering to help out with the source code! We welcome contributions from anyone on the internet, and are grateful for even the smallest of fixes!

If you'd like to contribute to go-ethereum, please fork, fix, commit and send a pull request for the maintainers to review and merge into the main code base. If you wish to submit more complex changes though, please check up with the core devs first on our gitter channel to ensure those changes are in line with the general philosopy of the project and/or get some early feedback which can make both your efforts much lighter as well as our review and merge procedures quick and simple.

Please make sure your contributions adhere to our coding guidlines:

  • Code must adhere to the official Go formatting guidelines (i.e. uses gofmt).
  • Code must be documented adherign to the official Go commentary guidelines.
  • Pull requests need to be based on and opened against the develop branch.
  • Commit messages should be prefixed with the package(s) they modify.
    • E.g. "eth, rpc: make trace configs optional"

Please see the Developers' Guide for more details on configuring your environment, managing project dependencies and testing procedures.

License

The go-ethereum library (i.e. all code outside of the cmd directory) is licensed under the GNU Lesser General Public License v3.0, also included in our repository in the COPYING.LESSER file.

The go-ethereum binaries (i.e. all code inside of the cmd directory) is licensed under the GNU General Public License v3.0, also included in our repository in the COPYING file.