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