You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
William Banfield c8c248d733
docs: add an overview of the proposer-based timestamps algorithm (#8058)
2 years ago
..
README.md Clean up lint failures for Markdown files (#367) 2 years ago
abci.md Add the newly defined timeout parameters to the consensus parameters (#400) 2 years ago
apps.md docs: add an overview of the proposer-based timestamps algorithm (#8058) 2 years ago
client-server.md Clean up lint failures for Markdown files (#367) 2 years ago

README.md

order parent
1 [{title ABCI} {order 2}]

ABCI

ABCI stands for "Application Blockchain Interface". ABCI is the interface between Tendermint (a state-machine replication engine) and your application (the actual state machine). It consists of a set of methods, each with a corresponding Request and Responsemessage type. To perform state-machine replication, Tendermint calls the ABCI methods on the ABCI application by sending the Request* messages and receiving the Response* messages in return.

All ABCI messages and methods are defined in protocol buffers. This allows Tendermint to run with applications written in many programming languages.

This specification is split as follows:

  • Methods and Types - complete details on all ABCI methods and message types
  • Applications - how to manage ABCI application state and other details about building ABCI applications
  • Client and Server - for those looking to implement their own ABCI application servers