Go to file
Ethan Buchman f44336d57d consensus: don't print shared vars in cs.String() 2016-07-12 12:47:13 -04:00
DOCKER expose ports in dockerfile 2016-02-05 23:46:45 -05:00
INSTALL Tendermint <-> Application refactor 2015-12-01 20:12:01 -08:00
benchmarks w(oop)s 2016-02-19 02:11:50 +00:00
blockchain Unify blockpool mtxs 2016-06-28 18:02:27 -07:00
cmd/tendermint set log level. use p2p config 2016-06-11 20:19:58 -07:00
config support tmsp via grpc 2016-05-23 14:46:32 -04:00
consensus consensus: don't print shared vars in cs.String() 2016-07-12 12:47:13 -04:00
mempool mempool: don't remove committed txs from cache 2016-07-11 12:32:24 -04:00
node broadcast_commit 2016-07-05 14:26:20 -04:00
proxy support tmsp via grpc 2016-05-23 14:46:32 -04:00
rpc rpc/tests: panic dont t.Fatal. use random txs for broadcast 2016-07-11 20:40:24 -04:00
scripts Refactor to move common libraries out of project 2015-10-22 17:39:06 -07:00
state wait until txs removed from mempool to fire tx events 2016-07-05 17:03:09 -04:00
test/rpc update tmsp glide 2016-07-06 17:14:57 -04:00
types broadcast_commit 2016-07-05 14:26:20 -04:00
version version folder, rpc core version 2016-01-20 16:25:26 -05:00
.gitignore Add Glide files for project management 2016-01-05 13:19:41 -08:00
LICENSE Fix license. It should have been GPLv3 2016-02-09 08:42:17 -08:00
Makefile update circle and glide 2016-07-05 15:40:53 -04:00
README.md Update README.md 2016-06-20 03:03:14 -07:00
Vagrantfile Introducing make economy and docker 2015-03-18 23:27:27 -07:00
circle.yml update circle and glide 2016-07-05 15:40:53 -04:00
glide.lock glide: update go-common 2016-07-11 22:37:42 -04:00
glide.yaml Glide update 2016-05-10 19:05:25 -07:00

README.md

Tendermint

Simple, Secure, Scalable Blockchain Platform

CircleCI

NOTE: This is yet pre-alpha non-production-quality software.

Resources

Tendermint Core

Sub-projects

Install

Make sure you have installed Go and set the GOPATH.

Install glide, used for dependency management:

go get https://github.com/Masterminds/glide

Install tendermint:

mkdir -p $GOPATH/src/github.com/tendermint
git clone https://github.com/tendermint/tendermint $GOPATH/src/github.com/tendermint/tendermint
cd $GOPATH/src/github.com/tendermint/tendermint
glide install
go install ./cmd/tendermint

Initialize a sample tendermint directory with an example genesis file (in ~/.tendermint):

tendermint init

Now run the tendermint node:

tendermint node --proxy_app=dummy

For tutorials on running other applications with Tendermint, and for launching test networks, see http://tendermint.com/guide/