Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 770 Bytes

README.md

File metadata and controls

38 lines (26 loc) · 770 Bytes

C-ABCI

A C implementation of the Tendermint Application BlockChain Interface (ABCI).

Requirement

Install Tendermint

Getting Started

  1. Clone this project and run make:

    $ git clone https://github.com/chainx-org/c-abci.git ~/c-abci
    $ cd ~/c-abci
    $ make
  2. When make is done, you'll see an executale program c-dummy in the bin directory, run it:

    $ cd bin
    $ ./c-dummy
  3. Start Tendermint.

    $ tendermint init
    $ tendermint node

    Note: if you have run Tendermint before, reset it first:

    $ tendermint unsafe_unset_all
    $ tendermint node