solana_program/
system_instruction.rs1#![deprecated(since = "2.3.0", note = "Use `solana_system_interface` crate instead")]
2
3pub use solana_system_interface::{
4 error::SystemError,
5 instruction::{
6 advance_nonce_account, allocate, allocate_with_seed, assign, assign_with_seed,
7 authorize_nonce_account, create_account, create_account_with_seed, create_nonce_account,
8 create_nonce_account_with_seed, transfer, transfer_many, transfer_with_seed,
9 upgrade_nonce_account, withdraw_nonce_account, SystemInstruction,
10 },
11 MAX_PERMITTED_ACCOUNTS_DATA_ALLOCATIONS_PER_TRANSACTION, MAX_PERMITTED_DATA_LENGTH,
12};