ethrex_levm/
environment.rs1use ethrex_common::{
2 Address, H256, U256,
3 types::{BlockHeader, ChainConfig, Fork, ForkBlobSchedule},
4};
5
6use crate::constants::{
7 BLOB_BASE_FEE_UPDATE_FRACTION, BLOB_BASE_FEE_UPDATE_FRACTION_PRAGUE, MAX_BLOB_COUNT,
8 MAX_BLOB_COUNT_ELECTRA, TARGET_BLOB_GAS_PER_BLOCK, TARGET_BLOB_GAS_PER_BLOCK_PECTRA,
9};
10
11use rustc_hash::FxHashMap;
12pub type TransientStorage = FxHashMap<(Address, U256), U256>;
14
15#[derive(Debug, Default, Clone)]
16pub struct Environment {
18 pub origin: Address,
20 pub gas_limit: u64,
22 pub config: EVMConfig,
23 pub block_number: u64,
24 pub coinbase: Address,
26 pub timestamp: u64,
27 pub prev_randao: Option<H256>,
28 pub difficulty: U256,
29 pub slot_number: U256,
30 pub chain_id: U256,
31 pub base_fee_per_gas: U256,
32 pub base_blob_fee_per_gas: U256,
33 pub gas_price: U256, pub block_excess_blob_gas: Option<u64>,
35 pub block_blob_gas_used: Option<u64>,
36 pub tx_blob_hashes: Vec<H256>,
37 pub tx_max_priority_fee_per_gas: Option<U256>,
38 pub tx_max_fee_per_gas: Option<U256>,
39 pub tx_max_fee_per_blob_gas: Option<U256>,
40 pub tx_nonce: u64,
41 pub block_gas_limit: u64,
42 pub is_privileged: bool,
43 pub fee_token: Option<Address>,
44 pub disable_balance_check: bool,
47 pub is_system_call: bool,
51}
52
53#[derive(Debug, Clone, Copy)]
62pub struct EVMConfig {
63 pub fork: Fork,
64 pub blob_schedule: ForkBlobSchedule,
65}
66
67impl EVMConfig {
68 pub fn new(fork: Fork, blob_schedule: ForkBlobSchedule) -> EVMConfig {
69 EVMConfig {
70 fork,
71 blob_schedule,
72 }
73 }
74
75 pub fn new_from_chain_config(chain_config: &ChainConfig, block_header: &BlockHeader) -> Self {
76 let fork = chain_config.fork(block_header.timestamp);
77
78 let blob_schedule = chain_config
79 .get_fork_blob_schedule(block_header.timestamp)
80 .unwrap_or_else(|| EVMConfig::canonical_values(fork));
81
82 EVMConfig::new(fork, blob_schedule)
83 }
84
85 pub fn canonical_values(fork: Fork) -> ForkBlobSchedule {
92 let max_blobs_per_block = Self::max_blobs_per_block(fork);
93 let target = Self::get_target_blob_gas_per_block_(fork);
94 let base_fee_update_fraction: u64 = Self::get_blob_base_fee_update_fraction_value(fork);
95
96 ForkBlobSchedule {
97 target,
98 max: max_blobs_per_block,
99 base_fee_update_fraction,
100 }
101 }
102
103 fn max_blobs_per_block(fork: Fork) -> u32 {
104 if fork >= Fork::Prague {
105 MAX_BLOB_COUNT_ELECTRA
106 } else {
107 MAX_BLOB_COUNT
108 }
109 }
110
111 fn get_blob_base_fee_update_fraction_value(fork: Fork) -> u64 {
112 if fork >= Fork::Prague {
113 BLOB_BASE_FEE_UPDATE_FRACTION_PRAGUE
114 } else {
115 BLOB_BASE_FEE_UPDATE_FRACTION
116 }
117 }
118
119 fn get_target_blob_gas_per_block_(fork: Fork) -> u32 {
120 if fork >= Fork::Prague {
121 TARGET_BLOB_GAS_PER_BLOCK_PECTRA
122 } else {
123 TARGET_BLOB_GAS_PER_BLOCK
124 }
125 }
126}
127
128impl Default for EVMConfig {
129 fn default() -> Self {
131 let fork = core::default::Default::default();
132 EVMConfig {
133 fork,
134 blob_schedule: Self::canonical_values(fork),
135 }
136 }
137}