Anton Kaliaev d16f52eab3 | 6 years ago | |
---|---|---|
.. | ||
README.md | 6 years ago | |
abci.md | 6 years ago | |
apps.md | 6 years ago | |
client-server.md | 6 years ago |
ABCI is the interface between Tendermint (a state-machine replication engine)
and an 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: