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
11
//! Raw escape hatch for Hopper Native.
//!
//! Direct access to syscalls, unchecked CPI, and memory primitives.
//! Only use in audited 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};