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.

76 lines
3.3 KiB

7 years ago
7 years ago
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, how they are validated,
  4. and how they are communicated over the network.
  5. If you find discrepancies between the spec and the code that
  6. do not have an associated issue or pull request on github,
  7. please submit them to our [bug bounty](https://tendermint.com/security)!
  8. ## Contents
  9. - [Overview](#overview)
  10. ### Data Structures
  11. - [Encoding and Digests](./blockchain/encoding.md)
  12. - [Blockchain](./blockchain/blockchain.md)
  13. - [State](./blockchain/state.md)
  14. ### Consensus Protocol
  15. - TODO
  16. ### P2P and Network Protocols
  17. - [The Base P2P Layer](p2p): multiplex the protocols ("reactors") on authenticated and encrypted TCP connections
  18. - [Peer Exchange (PEX)](reactors/pex): gossip known peer addresses so peers can find each other
  19. - [Block Sync](reactors/block_sync): gossip blocks so peers can catch up quickly
  20. - [Consensus](reactors/consensus): gossip votes and block parts so new blocks can be committed
  21. - [Mempool](reactors/mempool): gossip transactions so they get included in blocks
  22. - Evidence: TODO
  23. ### More
  24. - Light Client: TODO
  25. - Persistence: TODO
  26. ## Overview
  27. Tendermint provides Byzantine Fault Tolerant State Machine Replication using
  28. hash-linked batches of transactions. Such transaction batches are called "blocks".
  29. Hence, Tendermint defines a "blockchain".
  30. Each block in Tendermint has a unique index - its Height.
  31. A block at `Height == H` can only be committed *after* the
  32. block at `Height == H-1`.
  33. Each block is committed by a known set of weighted Validators.
  34. Membership and weighting within this set may change over time.
  35. Tendermint guarantees the safety and liveness of the blockchain
  36. so long as less than 1/3 of the total weight of the Validator set
  37. is malicious or faulty.
  38. A commit in Tendermint is a set of signed messages from more than 2/3 of
  39. the total weight of the current Validator set. Validators take turns proposing
  40. blocks and voting on them. Once enough votes are received, the block is considered
  41. committed. These votes are included in the *next* block as proof that the previous block
  42. was committed - they cannot be included in the current block, as that block has already been
  43. created.
  44. Once a block is committed, it can be executed against an application.
  45. The application returns results for each of the transactions in the block.
  46. The application can also return changes to be made to the validator set,
  47. as well as a cryptographic digest of its latest state.
  48. Tendermint is designed to enable efficient verification and authentication
  49. of the latest state of the blockchain. To achieve this, it embeds
  50. cryptographic commitments to certain information in the block "header".
  51. This information includes the contents of the block (eg. the transactions),
  52. the validator set committing the block, as well as the various results returned by the application.
  53. Note, however, that block execution only occurs *after* a block is committed.
  54. Thus, application results can only be included in the *next* block.
  55. Also note that information like the transaction results and the validator set are never
  56. directly included in the block - only their cryptographic digests (Merkle roots) are.
  57. Hence, verification of a block requires a separate data structure to store this information.
  58. We call this the `State`. Block verification also requires access to the previous block.