Go implementation of the Ethereum protocol
Find a file
2015-09-06 13:06:52 -04:00
_data Chain tests 2014-12-30 15:42:26 +01:00
accounts test change lol 2015-09-01 18:24:03 -04:00
build changes 2015-09-01 18:56:30 -04:00
cmd update 60606 to 42786 2015-09-05 15:38:49 -04:00
common ether to expanse 2015-09-01 18:26:59 -04:00
compression/rle test change lol 2015-09-01 18:24:03 -04:00
core update blockreward to 8 2015-09-05 15:26:15 -04:00
crypto ether to expanse 2015-09-01 18:26:59 -04:00
docker update 60606 to 42786 2015-09-05 15:38:49 -04:00
errs test change lol 2015-09-01 18:24:03 -04:00
ethdb test change lol 2015-09-01 18:24:03 -04:00
event test change lol 2015-09-01 18:24:03 -04:00
exp update 60606 to 42786 2015-09-05 15:38:49 -04:00
fdtrack test change lol 2015-09-01 18:24:03 -04:00
generators test change lol 2015-09-01 18:24:03 -04:00
Godeps ethash 2015-09-01 18:24:03 -04:00
jsre replace eth for exp 2015-09-06 13:06:52 -04:00
logger test change lol 2015-09-01 18:24:03 -04:00
metrics test change lol 2015-09-01 18:24:03 -04:00
miner Merge remote-tracking branch 'ethereum/master' into develop 2015-09-02 22:37:46 -04:00
p2p update 60606 to 42786 2015-09-05 15:38:49 -04:00
params test change lol 2015-09-01 18:24:03 -04:00
pow test change lol 2015-09-01 18:24:03 -04:00
rlp test change lol 2015-09-01 18:24:03 -04:00
rpc expanse 2015-09-01 20:42:36 -04:00
tests update 60606 to 42786 2015-09-05 15:38:49 -04:00
trie ether to expanse 2015-09-01 18:26:59 -04:00
whisper test change lol 2015-09-01 18:24:03 -04:00
xeth test change lol 2015-09-01 18:24:03 -04:00
.gitattributes .gitattributes: add 2015-08-06 17:18:59 +02:00
.gitignore update testnet block 2015-09-03 13:37:31 -04:00
.gitmodules test change lol 2015-09-01 18:24:03 -04:00
.mailmap test change lol 2015-09-01 18:24:03 -04:00
.travis.yml Codecov integration 2015-08-18 22:46:48 +02:00
AUTHORS test change lol 2015-09-01 18:24:03 -04:00
CONTRIBUTING.md expanse 2015-09-01 20:42:36 -04:00
COPYING test change lol 2015-09-01 18:24:03 -04:00
COPYING.LESSER all: update license information 2015-07-07 14:12:44 +02:00
expanse_genesis.json update testnet block 2015-09-03 13:37:31 -04:00
Makefile test change lol 2015-09-01 18:24:03 -04:00
README.md update testnet block 2015-09-03 13:37:31 -04:00

Expanse Go

Expanse Go Client, by Christopher Franko (forked from Jeffrey Wilcke (and some other people)'s Expanse Go client).

      | 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/expanse/go-expanse.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 gexp requires two external dependencies, Go and GMP. You can install them using your favourite package manager. Once the dependencies are installed, run

make gexp

Executables

Go Expanse comes with several wrappers/executables found in the cmd directory:

  • gexp Expanse CLI (expanse command line interface client)
  • bootnode runs a bootstrap node for the Discovery Protocol
  • exptest test tool which runs with the tests suite: /path/to/test.json > exptest --test BlockTests --stdin.
  • evm is a generic Expanse 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

gexp 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-expanse 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.