Skip to main content

hopper_native/
raw.rs

1//! Raw escape hatch for Hopper Native.
2//!
3//! Direct access to syscalls, unchecked CPI, and memory primitives.
4//! Only use in audited paths where the higher-level APIs are insufficient.
5
6pub use crate::mem::*;
7#[allow(unused_imports)]
8pub use crate::syscalls::*;
9
10#[cfg(feature = "cpi")]
11pub use crate::cpi::{invoke_signed_unchecked, invoke_unchecked};