light-client 0.23.0

Client library for Light Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(clippy::result_large_err)]

pub mod client;
pub mod errors;
pub mod indexer;
pub mod merkle_tree;
mod rpc_trait;
pub mod state;

pub use client::{LightClient, RetryConfig};
pub use errors::RpcError;
pub use rpc_trait::{LightClientConfig, Rpc};
pub mod get_light_state_tree_infos;

pub mod lut;
pub use lut::load_lookup_table;