diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-27 23:30:38 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-27 23:30:38 +0800 |
commit | fe14b0b82e10ce92309e6af4b13c6eec20d8df87 (patch) | |
tree | 93b3825d1c34d0c39ba92ed991921457898cac7d /README.md | |
parent | a2162258274511b13ecf002e7ec6b82f8508d7e7 (diff) | |
parent | 079c59b929d5e09eebad6169c22f146bd2f060af (diff) | |
download | go-tangerine-fe14b0b82e10ce92309e6af4b13c6eec20d8df87.tar go-tangerine-fe14b0b82e10ce92309e6af4b13c6eec20d8df87.tar.gz go-tangerine-fe14b0b82e10ce92309e6af4b13c6eec20d8df87.tar.bz2 go-tangerine-fe14b0b82e10ce92309e6af4b13c6eec20d8df87.tar.lz go-tangerine-fe14b0b82e10ce92309e6af4b13c6eec20d8df87.tar.xz go-tangerine-fe14b0b82e10ce92309e6af4b13c6eec20d8df87.tar.zst go-tangerine-fe14b0b82e10ce92309e6af4b13c6eec20d8df87.zip |
Merge branch 'pr/evmjit' of https://github.com/chfast/go-ethereum into chfast-pr/evmjit
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -1,30 +1,27 @@ [![Bugs](https://badge.waffle.io/ethereum/go-ethereum.png?label=bug&title=Bugs)](https://waffle.io/ethereum/go-ethereum) [![Stories in Ready](https://badge.waffle.io/ethereum/go-ethereum.png?label=ready&title=Ready)](https://waffle.io/ethereum/go-ethereum) -[![Stories in -Progress](https://badge.waffle.io/ethereum/go-ethereum.svg?label=in%20progress&title=In Progress)](http://waffle.io/ethereum/go-ethereum) +[![Stories in Progress](https://badge.waffle.io/ethereum/go-ethereum.svg?label=in%20progress&title=In Progress)](http://waffle.io/ethereum/go-ethereum) +[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ethereum/go-ethereum?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) -Ethereum + +Ethereum PoC-8 ======== -[![Build -Status](http://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20master%20branch)](http://build.ethdev.com:8010/builders/Linux%20Go%20master%20branch/builds/-1) master [![Build -Status](http://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20develop%20branch)](http://build.ethdev.com:8010/builders/Linux%20Go%20develop%20branch/builds/-1) develop -[![Coverage Status](https://coveralls.io/repos/ethereum/go-ethereum/badge.png?branch=tests)](https://coveralls.io/r/ethereum/go-ethereum?branch=tests) tests +* [![Build Status](http://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20master%20branch)](http://build.ethdev.com:8010/builders/Linux%20Go%20master%20branch/builds/-1) master +* [![Build Status](http://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20develop%20branch)](http://build.ethdev.com:8010/builders/Linux%20Go%20develop%20branch/builds/-1) develop +* [![Travis-ci](https://api.travis-ci.org/ethereum/go-ethereum.svg)](https://travis-ci.org/ethereum/go-ethereum) travis-ci +* [![Coverage Status](https://coveralls.io/repos/ethereum/go-ethereum/badge.png?branch=tests)](https://coveralls.io/r/ethereum/go-ethereum?branch=tests) Ethereum Go Client © 2014 Jeffrey Wilcke. -Current state: Proof of Concept 0.8 - -Ethereum is currently in its testing phase. - Build ===== -To build Mist (GUI): +Mist (GUI): `go get github.com/ethereum/go-ethereum/cmd/mist` -To build the node (CLI): +Ethereum (CLI): `go get github.com/ethereum/go-ethereum/cmd/ethereum` @@ -46,9 +43,11 @@ Go Ethereum comes with several binaries found in * `mist` Official Ethereum Browser * `ethereum` Ethereum CLI * `ethtest` test tool which runs with the [tests](https://github.com/ethereum/testes) suit: - `ethtest "`cat myfile.json`"`. + `cat file | ethtest`. * `evm` is a generic Ethereum Virtual Machine: `evm -code 60ff60ff -gas 10000 -price 0 -dump`. See `-h` for a detailed description. +* `rlpdump` converts a rlp stream to `interface{}`. +* `peerserver` simple P2P (noi-ethereum) peer server. General command line options ============================ @@ -125,3 +124,4 @@ expect you to write tests for me so I don't have to test your code manually. (If you want to contribute by just writing tests that's fine too!) + |