Skip to main content

solana_system_program/
lib.rs

1#![cfg(feature = "agave-unstable-api")]
2#![allow(clippy::arithmetic_side_effects)]
3pub mod system_instruction;
4pub mod system_processor;
5
6use solana_sdk_ids::system_program;
7pub use {
8    solana_nonce_account::{SystemAccountKind, get_system_account_kind},
9    system_program::id,
10};