Skip to content

chainx-org/c-abci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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