diff --git a/sdk/program/src/loader_v4.rs b/sdk/program/src/loader_v4.rs index 5c125ecbd98558..a7781dfda19887 100644 --- a/sdk/program/src/loader_v4.rs +++ b/sdk/program/src/loader_v4.rs @@ -1,5 +1,11 @@ #[deprecated(since = "2.2.0", note = "Use solana-loader-v4-interface instead")] pub use solana_loader_v4_interface::{ + instruction::{ + create_buffer, deploy, deploy_from_source, finalize, is_deploy_instruction, + is_finalize_instruction, is_retract_instruction, is_transfer_authority_instruction, + is_truncate_instruction, is_write_instruction, retract, transfer_authority, truncate, + truncate_uninitialized, write, + }, state::{LoaderV4State, LoaderV4Status}, DEPLOYMENT_COOLDOWN_IN_SLOTS, };