sui_types/gas_model/
gas_predicates.rsuse crate::gas_model::tables::{
initial_cost_schedule_v1, initial_cost_schedule_v2, initial_cost_schedule_v3,
initial_cost_schedule_v4, initial_cost_schedule_v5,
};
use crate::gas_model::units_types::CostTable;
use sui_protocol_config::ProtocolConfig;
const V2_NATIVE_FUNCTION_CALL_THRESHOLD: u64 = 700;
pub fn dont_charge_budget_on_storage_oog(gas_model_version: u64) -> bool {
gas_model_version >= 4
}
pub fn gas_price_too_high(gas_model_version: u64) -> bool {
gas_model_version >= 4
}
pub fn charge_input_as_memory(gas_model_version: u64) -> bool {
gas_model_version == 4
}
pub fn use_legacy_abstract_size(gas_model_version: u64) -> bool {
gas_model_version <= 7
}
pub fn txn_base_cost_as_multiplier(protocol_config: &ProtocolConfig) -> bool {
protocol_config.txn_base_cost_as_multiplier()
}
pub fn charge_upgrades(gas_model_version: u64) -> bool {
gas_model_version >= 7
}
pub fn cost_table_for_version(gas_model: u64) -> CostTable {
if gas_model <= 3 {
initial_cost_schedule_v1()
} else if gas_model == 4 {
initial_cost_schedule_v2()
} else if gas_model == 5 {
initial_cost_schedule_v3()
} else if gas_model <= 7 {
initial_cost_schedule_v4()
} else {
initial_cost_schedule_v5()
}
}
pub fn native_function_threshold_exceeded(gas_model_version: u64, num_native_calls: u64) -> bool {
if gas_model_version > 8 {
num_native_calls > V2_NATIVE_FUNCTION_CALL_THRESHOLD
} else {
false
}
}