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.

93 lines
3.9 KiB

  1. ---
  2. order: 1
  3. title: Overview
  4. parent:
  5. title: Spec
  6. order: 7
  7. ---
  8. # Tendermint Spec
  9. This is a markdown specification of the Tendermint blockchain.
  10. It defines the base data structures, how they are validated,
  11. and how they are communicated over the network.
  12. If you find discrepancies between the spec and the code that
  13. do not have an associated issue or pull request on github,
  14. please submit them to our [bug bounty](https://tendermint.com/security)!
  15. ## Contents
  16. - [Overview](#overview)
  17. ### Data Structures
  18. - [Encoding and Digests](./core/encoding.md)
  19. - [Blockchain](./core/data_structures.md)
  20. - [State](./core/state.md)
  21. ### Consensus Protocol
  22. - [Consensus Algorithm](./consensus/consensus.md)
  23. - [Creating a proposal](./consensus/creating-proposal.md)
  24. - [Time](./consensus/bft-time.md)
  25. - [Light-Client](./consensus/light-client/README.md)
  26. ### P2P and Network Protocols
  27. - [The Base P2P Layer](./p2p/node.md): multiplex the protocols ("reactors") on authenticated and encrypted TCP connections
  28. - [Peer Exchange (PEX)](./p2p/messages/pex.md): gossip known peer addresses so peers can find each other
  29. - [Block Sync](./p2p/messages/block-sync.md): gossip blocks so peers can catch up quickly
  30. - [Consensus](./p2p/messages/consensus.md): gossip votes and block parts so new blocks can be committed
  31. - [Mempool](./p2p/messages/mempool.md): gossip transactions so they get included in blocks
  32. - [Evidence](./p2p/messages/evidence.md): sending invalid evidence will stop the peer
  33. ### RPC
  34. - [RPC SPEC](./rpc/README.md): Specification of the Tendermint remote procedure call interface.
  35. ### Software
  36. - [ABCI](./abci/README.md): Details about interactions between the
  37. application and consensus engine over ABCI
  38. - [Write-Ahead Log](./consensus/wal.md): Details about how the consensus
  39. engine preserves data and recovers from crash failures
  40. ## Overview
  41. Tendermint provides Byzantine Fault Tolerant State Machine Replication using
  42. hash-linked batches of transactions. Such transaction batches are called "blocks".
  43. Hence, Tendermint defines a "blockchain".
  44. Each block in Tendermint has a unique index - its Height.
  45. Height's in the blockchain are monotonic.
  46. Each block is committed by a known set of weighted Validators.
  47. Membership and weighting within this validator set may change over time.
  48. Tendermint guarantees the safety and liveness of the blockchain
  49. so long as less than 1/3 of the total weight of the Validator set
  50. is malicious or faulty.
  51. A commit in Tendermint is a set of signed messages from more than 2/3 of
  52. the total weight of the current Validator set. Validators take turns proposing
  53. blocks and voting on them. Once enough votes are received, the block is considered
  54. committed. These votes are included in the _next_ block as proof that the previous block
  55. was committed - they cannot be included in the current block, as that block has already been
  56. created.
  57. Once a block is committed, it can be executed against an application.
  58. The application returns results for each of the transactions in the block.
  59. The application can also return changes to be made to the validator set,
  60. as well as a cryptographic digest of its latest state.
  61. Tendermint is designed to enable efficient verification and authentication
  62. of the latest state of the blockchain. To achieve this, it embeds
  63. cryptographic commitments to certain information in the block "header".
  64. This information includes the contents of the block (eg. the transactions),
  65. the validator set committing the block, as well as the various results returned by the application.
  66. Note, however, that block execution only occurs _after_ a block is committed.
  67. Thus, application results can only be included in the _next_ block.
  68. Also note that information like the transaction results and the validator set are never
  69. directly included in the block - only their cryptographic digests (Merkle roots) are.
  70. Hence, verification of a block requires a separate data structure to store this information.
  71. We call this the `State`. Block verification also requires access to the previous block.