Skip to main content

hopper_native/
safe.rs

1//! Safe default path for Hopper Native.
2//!
3//! Re-exports the checked, validated APIs that most programs should use.
4//! This is the recommended entry point for standard Hopper development.
5
6pub use crate::account_view::AccountView;
7pub use crate::pda::{verify_pda, verify_pda_strict, verify_pda_with_bump};
8
9#[cfg(feature = "cpi")]
10pub use crate::cpi::{invoke, invoke_signed, invoke_signed_with_bounds, invoke_with_bounds};