vote-commitment-tree-client 0.4.0

HTTP client and CLI for syncing and verifying the vote commitment tree against a running Zcash shielded-voting chain node.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Remote client library for the Zally vote commitment tree.
//!
//! Provides [`HttpTreeSyncApi`] — an HTTP implementation of the
//! [`TreeSyncApi`](vote_commitment_tree::TreeSyncApi) trait that connects to
//! a running Zally chain node's REST API.
//!
//! Used by the `vote-tree-cli` binary and available as a library for
//! integration in other Rust tools.

#[cfg(feature = "http")]
pub mod http_sync_api;
pub mod transport;
pub mod types;