tendermint/docs/spec/abci
Dev Ojha 56d7160606 Add ValidatorPubkeyTypes as a consensus param (#2636)
* Add ValidatorPubkeyTypes as a consensus param

Ref #2414

* update spec

* address anton's comment

* Switch to Validator and Validator Params

* Correct changelog entry

* Address bucky's comments!

* forgot to update changelog

* fix typo

* fix Params naming
2018-10-30 11:36:53 -04:00
..
README.md add spec/abci/readme to sidebar (#2551) 2018-10-05 09:51:23 -04:00
abci.md Add ValidatorPubkeyTypes as a consensus param (#2636) 2018-10-30 11:36:53 -04:00
apps.md docs/spec/abci: consensus params and general merkle (#2524) 2018-09-30 15:08:01 -04:00
client-server.md Merge pull request #2354 from tendermint/anton/fix-typos-in-spec 2018-09-07 07:28:50 -04:00

README.md

Overview

ABCI is the interface between Tendermint (a state-machine replication engine) and your 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:

  • Methods and Types - complete details on all ABCI methods and message types
  • Applications - how to manage ABCI application state and other details about building ABCI applications
  • Client and Server - for those looking to implement their own ABCI application servers