data_anchor_proofs/
lib.rs

1//! This crate contains proofs related to the Solana blockchain.
2//!
3//! The proofs can prove the state of accounts on the chain and whether or not they were updated,
4//! but it makes no semantic assumptions about the account data, it's just considered raw bytes.
5//! The account data must first be deserialized and verified that it matches the expected state.
6
7pub mod accounts_delta_hash;
8pub mod bank_hash;
9pub mod blob;
10pub mod blober_account_state;
11pub mod compound;
12mod debug;
13pub mod slot_hash;
14
15#[doc(hidden)]
16#[cfg(test)]
17pub(crate) mod testing;