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.

57 lines
2.6 KiB

7 years ago
7 years ago
  1. # Tendermint Specification
  2. This is a markdown specification of the Tendermint blockchain.
  3. It defines the base data structures used in the blockchain and how they are validated.
  4. It contains the following components:
  5. - [Encoding and Digests](encoding.md)
  6. - [Blockchain](blockchain.md)
  7. - [State](state.md)
  8. ## Overview
  9. Tendermint provides Byzantine Fault Tolerant State Machine Replication using
  10. hash-linked batches of transactions. Such transaction batches are called "blocks".
  11. Hence Tendermint defines a "blockchain".
  12. Each block in Tendermint has a unique index - its Height.
  13. A block at `Height == H` can only be committed *after* the
  14. block at `Height == H-1`.
  15. Each block is committed by a known set of weighted Validators.
  16. Membership and weighting within this set may change over time.
  17. Tendermint guarantees the safety and liveness of the blockchain
  18. so long as less than 1/3 of the total weight of the Validator set
  19. is malicious.
  20. A commit in Tendermint is a set of signed messages from more than 2/3 of
  21. the total weight of the current Validator set. Validators take turns proposing
  22. blocks and voting on them. Once enough votes are received, the block is considered
  23. committed. These votes are included in the *next* block as proof that the previous block
  24. was committed - they cannot be included in the current block, as that block has already been
  25. created.
  26. Once a block is committed, it can be executed against an application.
  27. The application returns results for each of the transactions in the block.
  28. The application can also return changes to be made to the validator set,
  29. as well as a cryptographic digest of its latest state.
  30. Tendermint is designed to enable efficient verification and authentication
  31. of the latest state of the blockchain. To achieve this, it embeds
  32. cryptographic commitments to certain information in the block "header".
  33. This information includes the contents of the block (eg. the transactions),
  34. the validator set committing the block, as well as the various results returned by the application.
  35. Note, however, that block execution only occurs *after* a block is committed.
  36. Thus, application results can only be included in the *next* block.
  37. Also note that information like the transaction results and the validator set are never
  38. directly included in the block - only their cryptographic digests (Merkle roots) are.
  39. Hence, verification of a block requires a separate data structure to store this information.
  40. We call this the `State`. Block verification also requires access to the previous block.
  41. ## TODO
  42. - Light Client
  43. - P2P
  44. - Reactor protocols (consensus, mempool, blockchain, pex)