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.

27 lines
1.1 KiB

  1. ---
  2. order: 1
  3. parent:
  4. title: ABCI
  5. order: 2
  6. ---
  7. # ABCI
  8. ABCI stands for "**A**pplication **B**lock**c**hain **I**nterface".
  9. ABCI is the interface between Tendermint (a state-machine replication engine)
  10. and your application (the actual state machine). It consists of a set of
  11. _methods_, each with a corresponding `Request` and `Response`message type.
  12. To perform state-machine replication, Tendermint calls the ABCI methods on the
  13. ABCI application by sending the `Request*` messages and receiving the `Response*` messages in return.
  14. All ABCI messages and methods are defined in [protocol buffers](../../proto/tendermint/abci/types.proto).
  15. This allows Tendermint to run with applications written in many programming languages.
  16. This specification is split as follows:
  17. - [Methods and Types](./abci.md) - complete details on all ABCI methods and
  18. message types
  19. - [Applications](./apps.md) - how to manage ABCI application state and other
  20. details about building ABCI applications
  21. - [Client and Server](./client-server.md) - for those looking to implement their
  22. own ABCI application servers