hopper-system 0.1.0

Hopper-owned System Program builder surface. Thin, no_std instruction builders over Hopper Runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Hopper-owned System Program builder surface.
//!
//! Thin first-class Hopper wrappers over the canonical runtime builders.
//! This crate exists so authored Hopper programs can depend on Hopper-native
//! program helper crates instead of reaching through backend-specific packages.

#![no_std]
#![deny(unsafe_op_in_unsafe_fn)]

pub use hopper_runtime::system::{
    instructions, Allocate, Assign, CreateAccount, Transfer, SYSTEM_PROGRAM_ID,
};