Go to file
Fynn 8bf9cd853f FreeBSD support
Former-commit-id: ff5dba816571945e8c0837f3ef52485da5fd7314 [formerly 2f23f618fd8f01331b593ab4e064138047fe7c77]
Former-commit-id: 1ec5e7440481e307be5e131ac0a416fd7d2fea9f
2015-07-28 19:16:16 -03:00
_data FreeBSD support 2015-07-28 19:16:16 -03:00
accounts FreeBSD support 2015-07-28 19:16:16 -03:00
build FreeBSD support 2015-07-28 19:16:16 -03:00
cmd FreeBSD support 2015-07-28 19:16:16 -03:00
common FreeBSD support 2015-07-28 19:16:16 -03:00
compression/rle FreeBSD support 2015-07-28 19:16:16 -03:00
core FreeBSD support 2015-07-28 19:16:16 -03:00
crypto FreeBSD support 2015-07-28 19:16:16 -03:00
docker FreeBSD support 2015-07-28 19:16:16 -03:00
errs FreeBSD support 2015-07-28 19:16:16 -03:00
eth FreeBSD support 2015-07-28 19:16:16 -03:00
ethdb FreeBSD support 2015-07-28 19:16:16 -03:00
event FreeBSD support 2015-07-28 19:16:16 -03:00
generators FreeBSD support 2015-07-28 19:16:16 -03:00
Godeps FreeBSD support 2015-07-28 19:16:16 -03:00
jsre FreeBSD support 2015-07-28 19:16:16 -03:00
logger FreeBSD support 2015-07-28 19:16:16 -03:00
metrics FreeBSD support 2015-07-28 19:16:16 -03:00
miner FreeBSD support 2015-07-28 19:16:16 -03:00
p2p FreeBSD support 2015-07-28 19:16:16 -03:00
params FreeBSD support 2015-07-28 19:16:16 -03:00
pow FreeBSD support 2015-07-28 19:16:16 -03:00
rlp FreeBSD support 2015-07-28 19:16:16 -03:00
rpc FreeBSD support 2015-07-28 19:16:16 -03:00
tests FreeBSD support 2015-07-28 19:16:16 -03:00
trie FreeBSD support 2015-07-28 19:16:16 -03:00
whisper FreeBSD support 2015-07-28 19:16:16 -03:00
xeth FreeBSD support 2015-07-28 19:16:16 -03:00
.gitignore FreeBSD support 2015-07-28 19:16:16 -03:00
.gitmodules FreeBSD support 2015-07-28 19:16:16 -03:00
.mailmap FreeBSD support 2015-07-28 19:16:16 -03:00
.travis.yml FreeBSD support 2015-07-28 19:16:16 -03:00
AUTHORS FreeBSD support 2015-07-28 19:16:16 -03:00
COPYING FreeBSD support 2015-07-28 19:16:16 -03:00
COPYING.LESSER FreeBSD support 2015-07-28 19:16:16 -03:00
Makefile FreeBSD support 2015-07-28 19:16:16 -03:00
README.md FreeBSD support 2015-07-28 19:16:16 -03:00

Ethereum Go

Ethereum Go Client, by Jeffrey Wilcke (and some other people).

      | Linux   | OSX | ARM | Windows | Tests

----------|---------|-----|-----|---------|------ develop | Build+Status | Build+Status | Build+Status | Build+Status | Buildr+Status Coverage Status master | Build+Status | Build+Status | Build+Status | Build+Status | Buildr+Status Coverage Status

Bugs Stories in Ready ![Stories in Progress](https://badge.waffle.io/ethereum/go-ethereum.svg?label=in%20progress&title=In Progress) 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:

  • 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" | disasm
  • 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.