light-client 0.19.0

Client library for Light Protocol
Documentation
pub mod photon_indexer;

mod base58;
mod config;
mod error;
mod indexer_trait;
mod response;
pub(crate) mod tree_info;
mod types;

pub use base58::Base58Conversions;
pub use config::{IndexerRpcConfig, RetryConfig};
pub use error::IndexerError;
pub use indexer_trait::Indexer;
pub use response::{Context, Items, ItemsWithCursor, Response};
pub use types::{
    AccountProofInputs, Address, AddressMerkleTreeAccounts, AddressProofInputs, AddressQueueData,
    AddressWithTree, CompressedAccount, CompressedTokenAccount, Hash, InputQueueData, MerkleProof,
    MerkleProofWithContext, NewAddressProofWithContext, NextTreeInfo, OutputQueueData,
    OwnerBalance, ProofOfLeaf, QueueElementsResult, QueueInfo, QueueInfoResult, RootIndex,
    SignatureWithMetadata, StateMerkleTreeAccounts, StateQueueData, TokenBalance, TreeInfo,
    ValidityProofWithContext,
};
mod options;
pub use options::*;