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.

45 lines
2.0 KiB

  1. ---
  2. order: 1
  3. parent:
  4. title: ABCI++
  5. order: 3
  6. ---
  7. # ABCI++
  8. ## Introduction
  9. ABCI++ is a major evolution of ABCI (**A**pplication **B**lock**c**hain **I**nterface).
  10. Like its predecessor, ABCI++ is the interface between Tendermint (a state-machine
  11. replication engine) and the actual state machine being replicated (i.e., the Application).
  12. The API consists of a set of _methods_, each with a corresponding `Request` and `Response`
  13. message type.
  14. The methods are always initiated by Tendermint. The Application implements its logic
  15. for handling all ABCI++ methods.
  16. Thus, Tendermint always sends the `Request*` messages and receives the `Response*` messages
  17. in return.
  18. All ABCI++ messages and methods are defined in
  19. [protocol buffers](https://github.com/tendermint/tendermint/blob/master/proto/spec/abci/types.proto).
  20. This allows Tendermint to run with applications written in many programming languages.
  21. This specification is split as follows:
  22. - [Basic concepts and definitions](./abci++_basic_concepts_002_draft.md) - definitions and descriptions
  23. of concepts that are needed to understand other parts of this sepcification.
  24. - [Methods](./abci++_methods_002_draft.md) - complete details on all ABCI++ methods
  25. and message types.
  26. - [Requirements for the Application](./abci++_app_requirements_002_draft.md) - formal requirements
  27. on the Application's logic to ensure liveness of Tendermint. These requirements define what
  28. Tendermint expects from the Application.
  29. - [Tendermint's expected behavior](./abci++_tmint_expected_behavior_002_draft.md) - specification of
  30. how the different ABCI++ methods may be called by Tendermint. This explains what the Application
  31. is to expect from Tendermint.
  32. >**TODO** Re-read these and remove redundant info
  33. - [Applications](../abci/apps.md) - how to manage ABCI application state and other
  34. details about building ABCI applications
  35. - [Client and Server](../abci/client-server.md) - for those looking to implement their
  36. own ABCI application servers