ZCash light client
Posted mutourend
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZCash light client相关的知识,希望对你有一定的参考价值。
1. 引言
light client可在未下载整个历史区块的情况下,与区块链进行交互。
ZCash的light client又名lightweight node,需引用a trusted full node’s copy of the blockchain,该full node可fully enforces all of the rules of the blockchain。
相关代码实现可参看:
- https://github.com/zcash/lightwalletd
- https://github.com/adityapk00/zecwallet-light-cli
- https://github.com/adityapk00/lightwalletd
2. Lightwalletd
Lightwalletd为a stateless server,用于给light client提供blockchain information。
Lightwalletd的主要工作有:
- 1)从zcashd中拿来blockchain data;
- 2)对这些data进行处理以减少数据量;
- 3)将处理后的数据存储在数据库中。
支持具有不同需求的light client,不直接与zcashd交互,直接从Lightwalletd中获取相关数据。
参考资料
以上是关于ZCash light client的主要内容,如果未能解决你的问题,请参考以下文章
text https://github.com/zcash/zcash/issues/3962
Zcash - 深入浅出Pedersen Hash/Commitment计算