Files
tendermint/README.md
2014-11-07 23:27:03 -08:00

968 B

Tendermint in Golang

Tendermint is a completely decentralized byzantine consensus protocol suitable for use in crypto-currencies.

This project is a reference implementation of the protocol.

Submodules

  • consensus: core consensus algorithm
  • state: application state; mutated by transactions
  • blocks: structures of the blockchain
  • mempool: gossip of new transactions
  • merkle: merkle hash trees
  • p2p: extensible P2P networking

Build

go build -o tendermint github.com/tendermint/tendermint/cmd

Run

./tendermint daemon

Contribute

Resources