solana_system_program/
lib.rs1#![cfg_attr(
2 not(feature = "agave-unstable-api"),
3 deprecated(
4 since = "3.1.0",
5 note = "This crate has been marked for formal inclusion in the Agave Unstable API. From \
6 v4.0.0 onward, the `agave-unstable-api` crate feature must be specified to \
7 acknowledge use of an interface that may break without warning."
8 )
9)]
10#![allow(clippy::arithmetic_side_effects)]
11pub mod system_instruction;
12pub mod system_processor;
13
14use solana_sdk_ids::system_program;
15pub use {
16 solana_nonce_account::{get_system_account_kind, SystemAccountKind},
17 system_program::id,
18};