solana_program/
loader_v4.rs1#![deprecated(since = "2.3.0", note = "Use solana-loader-v4-interface instead")]
2pub use {
3 solana_loader_v4_interface::{
4 instruction::{
5 create_buffer, deploy, deploy_from_source, finalize, is_deploy_instruction,
6 is_finalize_instruction, is_retract_instruction, is_set_program_length_instruction,
7 is_transfer_authority_instruction, is_write_instruction, retract,
8 set_program_length as truncate, transfer_authority, write,
9 },
10 state::{LoaderV4State, LoaderV4Status},
11 DEPLOYMENT_COOLDOWN_IN_SLOTS,
12 },
13 solana_sdk_ids::loader_v4::{check_id, id, ID},
14};