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.

26 lines
1.0 KiB

  1. ---
  2. order: 1
  3. parent:
  4. title: ABCI
  5. order: 2
  6. ---
  7. # ABCI
  8. ABCI is the interface between Tendermint (a state-machine replication engine)
  9. and your application (the actual state machine). It consists of a set of
  10. _methods_, where each method has a corresponding `Request` and `Response`
  11. message type. Tendermint calls the ABCI methods on the ABCI application by sending the `Request*`
  12. messages and receiving the `Response*` messages in return.
  13. All message types are defined in a [protobuf file](https://github.com/tendermint/tendermint/blob/master/proto/tendermint/abci/types.proto).
  14. This allows Tendermint to run applications written in any programming language.
  15. This specification is split as follows:
  16. - [Methods and Types](./abci.md) - complete details on all ABCI methods and
  17. message types
  18. - [Applications](./apps.md) - how to manage ABCI application state and other
  19. details about building ABCI applications
  20. - [Client and Server](./client-server.md) - for those looking to implement their
  21. own ABCI application servers