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.
 
 
 
 
 
 
Marko c5576dfa69
spec: protobuf changes (#156)
4 years ago
..
README.md blockchain: rename to core (#123) 4 years ago
abci.md spec: protobuf changes (#156) 4 years ago
apps.md spec: protobuf changes (#156) 4 years ago
client-server.md spec: protobuf changes (#156) 4 years ago

README.md

cards
true

ABCI

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, where each method has a corresponding Request and Response message type. Tendermint calls the ABCI methods on the ABCI application by sending the Request* messages and receiving the Response* messages in return.

All message types are defined in a protobuf file. This allows Tendermint to run applications written in any programming language.

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