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.

34 lines
1.2 KiB

  1. ---
  2. order: 9
  3. ---
  4. # Light Client Protocol
  5. Light clients are an important part of the complete blockchain system
  6. for most applications. Tendermint provides unique speed and security
  7. properties for light client applications.
  8. See our [lite
  9. package](https://godoc.org/github.com/tendermint/tendermint/lite).
  10. ## Overview
  11. The objective of the light client protocol is to get a
  12. commit for a recent block
  13. hash where the commit includes a
  14. majority of signatures from the last known validator set. From there,
  15. all the application state is verifiable with [merkle
  16. proofs](../spec/blockchain/encoding.md#iavl-tree).
  17. ## Properties
  18. - You get the full collateralized security benefits of Tendermint; No
  19. need to wait for confirmations.
  20. - You get the full speed benefits of Tendermint; transactions
  21. commit instantly.
  22. - You can get the most recent version of the application state
  23. non-interactively (without committing anything to the blockchain).
  24. For example, this means that you can get the most recent value of a
  25. name from the name-registry without worrying about fork censorship
  26. attacks, without posting a commit and waiting for confirmations.
  27. It's fast, secure, and free!