hopper-native 0.1.0

Hopper's sovereign raw backend for Solana. Zero-copy account access, direct syscall layer, CPI infrastructure, PDA helpers, and entrypoint glue. no_std, no_alloc, no external runtime dependencies.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Safe default path for Hopper Native.
//!
//! Re-exports the checked, validated APIs that most programs should use.
//! This is the recommended entry point for standard Hopper development.

pub use crate::account_view::AccountView;
pub use crate::pda::{verify_pda, verify_pda_strict, verify_pda_with_bump};

#[cfg(feature = "cpi")]
pub use crate::cpi::{invoke, invoke_signed, invoke_signed_with_bounds, invoke_with_bounds};