solana_sdk/
compute_budget.rs1#![cfg(feature = "full")]
2
3use {
4 crate::instruction::Instruction,
5 borsh::{BorshDeserialize, BorshSerialize},
6};
7
8crate::declare_id!("ComputeBudget111111111111111111111111111111");
9
10#[derive(
12 AbiExample,
13 AbiEnumVisitor,
14 BorshDeserialize,
15 BorshSerialize,
16 Clone,
17 Debug,
18 Deserialize,
19 PartialEq,
20 Eq,
21 Serialize,
22)]
23pub enum ComputeBudgetInstruction {
24 RequestUnitsDeprecated {
26 units: u32,
28 additional_fee: u32,
30 },
31 RequestHeapFrame(u32),
36 SetComputeUnitLimit(u32),
38 SetComputeUnitPrice(u64),
41}
42
43impl ComputeBudgetInstruction {
44 pub fn request_heap_frame(bytes: u32) -> Instruction {
46 Instruction::new_with_borsh(id(), &Self::RequestHeapFrame(bytes), vec![])
47 }
48
49 pub fn set_compute_unit_limit(units: u32) -> Instruction {
51 Instruction::new_with_borsh(id(), &Self::SetComputeUnitLimit(units), vec![])
52 }
53
54 pub fn set_compute_unit_price(micro_lamports: u64) -> Instruction {
56 Instruction::new_with_borsh(id(), &Self::SetComputeUnitPrice(micro_lamports), vec![])
57 }
58}