hopper-native 0.4.4

Low-level Solana backend for Hopper with zero-copy account access, syscalls, checked CPI infrastructure, PDA helpers, and entrypoint glue. no_std and no_alloc.
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};