2018-10-05 09:51:23 -04:00
|
|
|
# Overview
|
2018-09-06 20:51:36 -04:00
|
|
|
|
|
|
|
ABCI is the interface between Tendermint (a state-machine replication engine)
|
2018-09-30 12:35:52 -04:00
|
|
|
and your application (the actual state machine). It consists of a set of
|
2019-07-08 19:54:24 +02:00
|
|
|
_methods_, where each method has a corresponding `Request` and `Response`
|
2018-09-06 20:51:36 -04:00
|
|
|
message type. Tendermint calls the ABCI methods on the ABCI application by sending the `Request*`
|
|
|
|
messages and receiving the `Response*` messages in return.
|
|
|
|
|
2019-07-08 19:54:24 +02:00
|
|
|
All message types are defined in a [protobuf file](https://github.com/tendermint/tendermint/blob/master/abci/types/types.proto).
|
2018-09-06 20:51:36 -04:00
|
|
|
This allows Tendermint to run applications written in any programming language.
|
|
|
|
|
|
|
|
This specification is split as follows:
|
|
|
|
|
2018-10-05 09:51:23 -04:00
|
|
|
- [Methods and Types](./abci.md) - complete details on all ABCI methods and
|
2018-09-06 20:51:36 -04:00
|
|
|
message types
|
2018-10-05 09:51:23 -04:00
|
|
|
- [Applications](./apps.md) - how to manage ABCI application state and other
|
2018-09-06 20:51:36 -04:00
|
|
|
details about building ABCI applications
|
2018-10-05 09:51:23 -04:00
|
|
|
- [Client and Server](./client-server.md) - for those looking to implement their
|
2018-09-06 20:51:36 -04:00
|
|
|
own ABCI application servers
|