DEPRECATED: Moved here
ABCI requests/responses are defined as simple Protobuf messages in this schema file. TendermintCore sends the requests, and the ABCI application sends the responses. Here, we provide an overview of the messages types and how they are used by Tendermint. Then we describe each request-response pair as a function with arguments and return values, and add some notes on usage.
Some messages (Echo, Info, InitChain, BeginBlock, EndBlock, Commit
),
don't return errors because an error would indicate a critical failure
in the application and there's nothing Tendermint can do. The problem
should be addressed and both Tendermint and the application restarted.
All other messages (SetOption, Query, CheckTx, DeliverTx
) return an
application-specific response Code uint32
, where only 0
is reserved
for OK
.
Some messages (SetOption, Query, CheckTx, DeliverTx
) return
non-deterministic data in the form of Info
and Log
. The Log
is
intended for the literal output from the application's logger, while the
Info
is any additional info that should be returned.
The first time a new blockchain is started, Tendermint calls
InitChain
. From then on, the Block Execution Sequence that causes the
committed state to be updated is as follows:
BeginBlock, [DeliverTx], EndBlock, Commit
where one DeliverTx
is called for each transaction in the block.
Cryptographic commitments to the results of DeliverTx, EndBlock, and
Commit are included in the header of the next block.
Tendermint opens three connections to the application to handle the different message types:
Consensus Connection - InitChain, BeginBlock, DeliverTx, EndBlock, Commit
Mempool Connection - CheckTx
Info Connection - Info, SetOption, Query
The Flush
message is used on every connection, and the Echo
message
is only used for debugging.
Note that messages may be sent concurrently across all connections -a
typical application will thus maintain a distinct state for each
connection. They may be referred to as the DeliverTx state
, the
CheckTx state
, and the Commit state
respectively.
See below for more details on the message types and how they are used.
Message (string)
: A string to echo backMessage (string)
: The input stringVersion (string)
: The Tendermint versionData (string)
: Some arbitrary informationVersion (Version)
: Version informationLastBlockHeight (int64)
: Latest block for which the app has
called CommitLastBlockAppHash ([]byte)
: Latest result of CommitLastBlockAppHash
and LastBlockHeight
to
be updated during Commit
, ensuring that Commit
is never
called twice for the same block height.Key (string)
: Key to setValue (string)
: Value to set for keyCode (uint32)
: Response codeLog (string)
: The output of the application's logger. May
be non-deterministic.Info (string)
: Additional information. May
be non-deterministic.Time (google.protobuf.Timestamp)
: Genesis time.ChainID (string)
: ID of the blockchain.ConsensusParams (ConsensusParams)
: Initial consensus-critical parameters.Validators ([]ValidatorUpdate)
: Initial genesis validators.AppStateBytes ([]byte)
: Serialized initial application state. Amino-encoded JSON bytes.ConsensusParams (ConsensusParams)
: Initial
consensus-critical parameters.Validators ([]ValidatorUpdate)
: Initial validator set (if non empty).Data ([]byte)
: Raw query bytes. Can be used with or in lieu
of Path.Path (string)
: Path of request, like an HTTP GET path. Can be
used with or in liue of Data.Height (int64)
: The block height for which you want the query
(default=0 returns data for the latest committed block). Note
that this is the height of the block containing the
application's Merkle root hash, which represents the state as it
was after committing the block at Height-1Prove (bool)
: Return Merkle proof with response if possibleCode (uint32)
: Response code.Log (string)
: The output of the application's logger. May
be non-deterministic.Info (string)
: Additional information. May
be non-deterministic.Index (int64)
: The index of the key in the tree.Key ([]byte)
: The key of the matching data.Value ([]byte)
: The value of the matching data.Proof ([]byte)
: Proof for the data, if requested.Height (int64)
: The block height from which data was derived.
Note that this is the height of the block containing the
application's Merkle root hash, which represents the state as it
was after committing the block at Height-1Hash ([]byte)
: The block's hash. This can be derived from the
block header.Header (struct{})
: The block header.LastCommitInfo (LastCommitInfo)
: Info about the last commit, including the
round, and the list of validators and which ones signed the last block.ByzantineValidators ([]Evidence)
: List of evidence of
validators that acted maliciously.Tags ([]cmn.KVPair)
: Key-Value tags for filtering and indexingLastCommitInfo
and ByzantineValidators
can be used to determine
rewards and punishments for the validators. NOTE validators here do not
include pubkeys.Request:
Tx ([]byte)
: The request transaction bytesResponse:
Code (uint32)
: Response codeData ([]byte)
: Result bytes, if any.Log (string)
: The output of the application's logger. May
be non-deterministic.Info (string)
: Additional information. May
be non-deterministic.GasWanted (int64)
: Amount of gas request for transaction.GasUsed (int64)
: Amount of gas consumed by transaction.Tags ([]cmn.KVPair)
: Key-Value tags for filtering and indexing
transactions (eg. by account).Usage: Validate a mempool transaction, prior to broadcasting or proposing. CheckTx should perform stateful but light-weight checks of the validity of the transaction (like checking signatures and account balances), but need not execute in full (like running a smart contract).
Tendermint runs CheckTx and DeliverTx concurrently with eachother, though on distinct ABCI connections - the mempool connection and the consensus connection, respectively.
The application should maintain a separate state to support CheckTx.
This state can be reset to the latest committed state during
Commit
. Before calling Commit, Tendermint will lock and flush the mempool,
ensuring that all existing CheckTx are responded to and no new ones can
begin. After Commit
, the mempool will rerun
CheckTx for all remaining transactions, throwing out any that are no longer valid.
Then the mempool will unlock and start sending CheckTx again.
Keys and values in Tags must be UTF-8 encoded strings (e.g. "account.owner": "Bob", "balance": "100.0", "date": "2018-01-02")
Tx ([]byte)
: The request transaction bytes.Code (uint32)
: Response code.Data ([]byte)
: Result bytes, if any.Log (string)
: The output of the application's logger. May
be non-deterministic.Info (string)
: Additional information. May
be non-deterministic.GasWanted (int64)
: Amount of gas requested for transaction.GasUsed (int64)
: Amount of gas consumed by transaction.Tags ([]cmn.KVPair)
: Key-Value tags for filtering and indexing
transactions (eg. by account).Height (int64)
: Height of the block just executed.ValidatorUpdates ([]ValidatorUpdate)
: Changes to validator set (set
voting power to 0 to remove).ConsensusParamUpdates (ConsensusParams)
: Changes to
consensus-critical time, size, and other parameters.Tags ([]cmn.KVPair)
: Key-Value tags for filtering and indexingData ([]byte)
: The Merkle root hashChainID (string)
: ID of the blockchainHeight (int64)
: Height of the block in the chainTime (google.protobuf.Timestamp)
: Time of the block. It is the proposer's
local time when block was created.NumTxs (int32)
: Number of transactions in the blockTotalTxs (int64)
: Total number of transactions in the blockchain until
nowLastBlockID (BlockID)
: Hash of the previous (parent) blockLastCommitHash ([]byte)
: Hash of the previous block's commitValidatorsHash ([]byte)
: Hash of the validator set for this blockNextValidatorsHash ([]byte)
: Hash of the validator set for the next blockConsensusHash ([]byte)
: Hash of the consensus parameters for this blockAppHash ([]byte)
: Data returned by the last call to Commit
- typically the
Merkle root of the application state after executing the previous block's
transactionsLastResultsHash ([]byte)
: Hash of the ABCI results returned by the last blockEvidenceHash ([]byte)
: Hash of the evidence included in this blockProposerAddress ([]byte)
: Original proposer for the blockAddress ([]byte)
: Address of the validator (hash of the public key)Power (int64)
: Voting power of the validatorPubKey (PubKey)
: Public key of the validatorPower (int64)
: Voting power of the validatorValidator (Validator)
: A validatorSignedLastBlock (bool)
: Indicates whether or not the validator signed
the last blockType (string)
: Type of the public key. A simple string like "ed25519"
.
In the future, may indicate a serialization algorithm to parse the Data
,
for instance "amino"
.Data ([]byte)
: Public key data. For a simple public key, it's just the
raw bytes. If the Type
indicates an encoding algorithm, this is the
encoded public key.Type (string)
: Type of the evidence. A hierarchical path like
"duplicate/vote".Validator (Validator
: The offending validatorHeight (int64)
: Height when the offense was committedTime (google.protobuf.Timestamp)
: Time of the block at height Height
.
It is the proposer's local time when block was created.TotalVotingPower (int64)
: Total voting power of the validator set at
height Height
Round (int32)
: Commit round.Votes ([]VoteInfo)
: List of validators addresses in the last validator set
with their voting power and whether or not they signed a vote.