pub struct ComputeBudget {Show 27 fields
pub compute_unit_limit: u64,
pub log_64_units: u64,
pub create_program_address_units: u64,
pub invoke_units: u64,
pub max_invoke_depth: usize,
pub sha256_base_cost: u64,
pub sha256_byte_cost: u64,
pub sha256_max_slices: u64,
pub max_call_depth: usize,
pub stack_frame_size: usize,
pub log_pubkey_units: u64,
pub max_cpi_instruction_size: usize,
pub cpi_bytes_per_unit: u64,
pub sysvar_base_cost: u64,
pub secp256k1_recover_cost: u64,
pub syscall_base_cost: u64,
pub curve25519_edwards_validate_point_cost: u64,
pub curve25519_edwards_add_cost: u64,
pub curve25519_edwards_subtract_cost: u64,
pub curve25519_edwards_multiply_cost: u64,
pub curve25519_ristretto_validate_point_cost: u64,
pub curve25519_ristretto_add_cost: u64,
pub curve25519_ristretto_subtract_cost: u64,
pub curve25519_ristretto_multiply_cost: u64,
pub heap_size: Option<usize>,
pub heap_cost: u64,
pub mem_op_base_cost: u64,
}
Fields
compute_unit_limit: u64
Number of compute units that a transaction or individual instruction is allowed to consume. Compute units are consumed by program execution, resources they use, etc…
log_64_units: u64
Number of compute units consumed by a log_u64 call
create_program_address_units: u64
Number of compute units consumed by a create_program_address call
invoke_units: u64
Number of compute units consumed by an invoke call (not including the cost incurred by the called program)
max_invoke_depth: usize
Maximum cross-program invocation depth allowed
sha256_base_cost: u64
Base number of compute units consumed to call SHA256
sha256_byte_cost: u64
Incremental number of units consumed by SHA256 (based on bytes)
sha256_max_slices: u64
Maximum number of slices hashed per syscall
max_call_depth: usize
Maximum BPF to BPF call depth
stack_frame_size: usize
Size of a stack frame in bytes, must match the size specified in the LLVM BPF backend
log_pubkey_units: u64
Number of compute units consumed by logging a Pubkey
max_cpi_instruction_size: usize
Maximum cross-program invocation instruction size
cpi_bytes_per_unit: u64
Number of account data bytes per compute unit charged during a cross-program invocation
sysvar_base_cost: u64
Base number of compute units consumed to get a sysvar
secp256k1_recover_cost: u64
Number of compute units consumed to call secp256k1_recover
syscall_base_cost: u64
Number of compute units consumed to do a syscall without any work
curve25519_edwards_validate_point_cost: u64
Number of compute units consumed to validate a curve25519 edwards point
curve25519_edwards_add_cost: u64
Number of compute units consumed to add two curve25519 edwards points
curve25519_edwards_subtract_cost: u64
Number of compute units consumed to subtract two curve25519 edwards points
curve25519_edwards_multiply_cost: u64
Number of compute units consumed to multiply a curve25519 edwards point
curve25519_ristretto_validate_point_cost: u64
Number of compute units consumed to validate a curve25519 ristretto point
curve25519_ristretto_add_cost: u64
Number of compute units consumed to add two curve25519 ristretto points
curve25519_ristretto_subtract_cost: u64
Number of compute units consumed to subtract two curve25519 ristretto points
curve25519_ristretto_multiply_cost: u64
Number of compute units consumed to multiply a curve25519 ristretto point
heap_size: Option<usize>
Optional program heap region size, if None
then loader default
heap_cost: u64
Number of compute units per additional 32k heap above the default (~.5 us per 32k at 15 units/us rounded up)
mem_op_base_cost: u64
Memory operation syscall base cost
Implementations
sourceimpl ComputeBudget
impl ComputeBudget
pub fn new(compute_unit_limit: u64) -> Self
pub fn process_instructions<'a>(
&mut self,
instructions: impl Iterator<Item = (&'a Pubkey, &'a CompiledInstruction)>,
default_units_per_instruction: bool,
support_set_compute_unit_price_ix: bool
) -> Result<PrioritizationFeeDetails, TransactionError>
Trait Implementations
sourceimpl AbiExample for ComputeBudget
impl AbiExample for ComputeBudget
sourceimpl Clone for ComputeBudget
impl Clone for ComputeBudget
sourcefn clone(&self) -> ComputeBudget
fn clone(&self) -> ComputeBudget
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ComputeBudget
impl Debug for ComputeBudget
sourceimpl Default for ComputeBudget
impl Default for ComputeBudget
sourceimpl PartialEq<ComputeBudget> for ComputeBudget
impl PartialEq<ComputeBudget> for ComputeBudget
sourcefn eq(&self, other: &ComputeBudget) -> bool
fn eq(&self, other: &ComputeBudget) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ComputeBudget) -> bool
fn ne(&self, other: &ComputeBudget) -> bool
This method tests for !=
.
impl Copy for ComputeBudget
impl Eq for ComputeBudget
impl StructuralEq for ComputeBudget
impl StructuralPartialEq for ComputeBudget
Auto Trait Implementations
impl RefUnwindSafe for ComputeBudget
impl Send for ComputeBudget
impl Sync for ComputeBudget
impl Unpin for ComputeBudget
impl UnwindSafe for ComputeBudget
Blanket Implementations
sourceimpl<T> AbiExample for T
impl<T> AbiExample for T
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> Pointable for T
impl<T> Pointable for T
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more