hopper-solana 0.2.0

Solana integration layer for Hopper. SPL Token/Mint zero-copy readers, Token-2022 screening, CPI guards, token account helpers.
Documentation
//! # Hopper Solana
//!
//! Solana integration layer for the Hopper framework.
//!
//! Provides zero-copy readers for SPL Token/Mint accounts, Token-2022
//! extension screening, CPI guards, token-specific validation helpers,
//! transaction introspection, Ed25519/Merkle cryptography, balance delta
//! guards, compute budget monitoring, and two-step authority rotation.

#![no_std]
#![deny(unsafe_op_in_unsafe_fn)]

pub mod ata;
pub mod authority;
pub mod balance;
pub mod compute;
pub mod constants;
pub mod cpi_guard;
pub mod crypto;
pub mod interface;
pub mod introspect;
pub mod mint;
pub mod oracle;
pub mod token;
pub mod token2022_ext;
pub mod twap;
pub mod typed_cpi;