hopper-native 0.4.3

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
11
//! Raw escape hatch for Hopper Native.
//!
//! Direct access to syscalls, unchecked CPI, and memory primitives.
//! Only use in reviewed paths where the higher-level APIs are insufficient.

pub use crate::mem::*;
#[allow(unused_imports)]
pub use crate::syscalls::*;

#[cfg(feature = "cpi")]
pub use crate::cpi::{invoke_signed_unchecked, invoke_unchecked};