revm_context_interface/
transaction.rs

1mod alloy_types;
2pub mod eip2930;
3pub mod eip7702;
4pub mod transaction_type;
5
6pub use alloy_types::{
7    AccessList, AccessListItem, Authorization, RecoveredAuthority, RecoveredAuthorization,
8    SignedAuthorization,
9};
10pub use eip2930::AccessListItemTr;
11pub use eip7702::AuthorizationTr;
12pub use transaction_type::TransactionType;
13
14use crate::result::InvalidTransaction;
15use auto_impl::auto_impl;
16use core::cmp::min;
17use core::fmt::Debug;
18use primitives::{eip4844::GAS_PER_BLOB, Address, Bytes, TxKind, B256, U256};
19
20/// Transaction validity error types.
21pub trait TransactionError: Debug + core::error::Error {}
22
23/// Main Transaction trait that abstracts and specifies all transaction currently supported by Ethereum
24///
25/// Access to any associated type is gaited behind [`tx_type`][Transaction::tx_type] function.
26///
27/// It can be extended to support new transaction types and only transaction types can be
28/// deprecated by not returning tx_type.
29#[auto_impl(&, Box, Arc, Rc)]
30pub trait Transaction {
31    type AccessListItem<'a>: AccessListItemTr
32    where
33        Self: 'a;
34    type Authorization<'a>: AuthorizationTr
35    where
36        Self: 'a;
37
38    /// Returns the transaction type.
39    ///
40    /// Depending on this field other functions should be called.
41    fn tx_type(&self) -> u8;
42
43    /// Caller aka Author aka transaction signer.
44    ///
45    /// Note : Common field for all transactions.
46    fn caller(&self) -> Address;
47
48    /// The maximum amount of gas the transaction can use.
49    ///
50    /// Note : Common field for all transactions.
51    fn gas_limit(&self) -> u64;
52
53    /// The value sent to the receiver of [`TxKind::Call`][primitives::TxKind::Call].
54    ///
55    /// Note : Common field for all transactions.
56    fn value(&self) -> U256;
57
58    /// Returns the input data of the transaction.
59    ///
60    /// Note : Common field for all transactions.
61    fn input(&self) -> &Bytes;
62
63    /// The nonce of the transaction.
64    ///
65    /// Note : Common field for all transactions.
66    fn nonce(&self) -> u64;
67
68    /// Transaction kind. It can be Call or Create.
69    ///
70    /// Kind is applicable for: Legacy, EIP-2930, EIP-1559
71    /// And is Call for EIP-4844 and EIP-7702 transactions.
72    fn kind(&self) -> TxKind;
73
74    /// Chain Id is optional for legacy transactions.
75    ///
76    /// As it was introduced in EIP-155.
77    fn chain_id(&self) -> Option<u64>;
78
79    /// Gas price for the transaction.
80    /// It is only applicable for Legacy and EIP-2930 transactions.
81    /// For Eip1559 it is max_fee_per_gas.
82    fn gas_price(&self) -> u128;
83
84    /// Access list for the transaction.
85    ///
86    /// Introduced in EIP-2930.
87    fn access_list(&self) -> Option<impl Iterator<Item = Self::AccessListItem<'_>>>;
88
89    /// Returns vector of fixed size hash(32 bytes)
90    ///
91    /// Note : EIP-4844 transaction field.
92    fn blob_versioned_hashes(&self) -> &[B256];
93
94    /// Max fee per data gas
95    ///
96    /// Note : EIP-4844 transaction field.
97    fn max_fee_per_blob_gas(&self) -> u128;
98
99    /// Total gas for all blobs. Max number of blocks is already checked
100    /// so we dont need to check for overflow.
101    fn total_blob_gas(&self) -> u64 {
102        GAS_PER_BLOB * self.blob_versioned_hashes().len() as u64
103    }
104
105    /// Calculates the maximum [EIP-4844] `data_fee` of the transaction.
106    ///
107    /// This is used for ensuring that the user has at least enough funds to pay the
108    /// `max_fee_per_blob_gas * total_blob_gas`, on top of regular gas costs.
109    ///
110    /// See EIP-4844:
111    /// <https://github.com/ethereum/EIPs/blob/master/EIPS/eip-4844.md#execution-layer-validation>
112    fn calc_max_data_fee(&self) -> U256 {
113        U256::from((self.total_blob_gas() as u128).saturating_mul(self.max_fee_per_blob_gas()))
114    }
115
116    /// Returns length of the authorization list.
117    ///
118    /// # Note
119    ///
120    /// Transaction is considered invalid if list is empty.
121    fn authorization_list_len(&self) -> usize;
122
123    /// List of authorizations, that contains the signature that authorizes this
124    /// caller to place the code to signer account.
125    ///
126    /// Set EOA account code for one transaction
127    ///
128    /// [EIP-Set EOA account code for one transaction](https://eips.ethereum.org/EIPS/eip-7702)
129    fn authorization_list(&self) -> impl Iterator<Item = Self::Authorization<'_>>;
130
131    // TODO(EOF)
132    // /// List of initcodes found in Initcode transaction. Initcodes can only be accessed
133    // /// by TXCREATE opcode to create a new EOF contract.
134    // ///
135    // /// Each transaction can contain up to [`primitives::eof::MAX_INITCODE_COUNT`] initcodes,
136    // /// with each initcode not exceeding [`primitives::MAX_INITCODE_SIZE`] bytes in size.
137    // ///
138    // /// EIP link: <https://eips.ethereum.org/EIPS/eip-7873>
139    // fn initcodes(&self) -> &[Bytes];
140
141    /// Returns maximum fee that can be paid for the transaction.
142    fn max_fee_per_gas(&self) -> u128 {
143        self.gas_price()
144    }
145
146    /// Maximum priority fee per gas.
147    fn max_priority_fee_per_gas(&self) -> Option<u128>;
148
149    /// Returns effective gas price is gas price field for Legacy and Eip2930 transaction.
150    ///
151    /// While for transactions after Eip1559 it is minimum of max_fee and `base + max_priority_fee`.
152    fn effective_gas_price(&self, base_fee: u128) -> u128 {
153        if self.tx_type() == TransactionType::Legacy as u8
154            || self.tx_type() == TransactionType::Eip2930 as u8
155        {
156            return self.gas_price();
157        }
158
159        // for EIP-1559 tx and onwards gas_price represents maximum price.
160        let max_price = self.gas_price();
161        let Some(max_priority_fee) = self.max_priority_fee_per_gas() else {
162            return max_price;
163        };
164        min(max_price, base_fee.saturating_add(max_priority_fee))
165    }
166
167    /// Returns the maximum balance that can be spent by the transaction.
168    ///
169    /// Return U256 or error if all values overflow U256 number.
170    fn max_balance_spending(&self) -> Result<U256, InvalidTransaction> {
171        // gas_limit * max_fee + value + additional_gas_cost
172        let mut max_balance_spending = (self.gas_limit() as u128)
173            .checked_mul(self.max_fee_per_gas())
174            .and_then(|gas_cost| U256::from(gas_cost).checked_add(self.value()))
175            .ok_or(InvalidTransaction::OverflowPaymentInTransaction)?;
176
177        // add blob fee
178        if self.tx_type() == TransactionType::Eip4844 {
179            let data_fee = self.calc_max_data_fee();
180            max_balance_spending = max_balance_spending
181                .checked_add(data_fee)
182                .ok_or(InvalidTransaction::OverflowPaymentInTransaction)?;
183        }
184        Ok(max_balance_spending)
185    }
186
187    /// Returns the effective balance that is going to be spent that depends on base_fee
188    ///
189    /// This is always strictly less than [`Self::max_balance_spending`].
190    ///
191    /// Return U256 or error if all values overflow U256 number.
192    fn effective_balance_spending(
193        &self,
194        base_fee: u128,
195        blob_price: u128,
196    ) -> Result<U256, InvalidTransaction> {
197        // gas_limit * max_fee + value + additional_gas_cost
198        let mut effective_balance_spending = U256::from(self.gas_limit())
199            .checked_mul(U256::from(self.effective_gas_price(base_fee)))
200            .and_then(|gas_cost| gas_cost.checked_add(self.value()))
201            .ok_or(InvalidTransaction::OverflowPaymentInTransaction)?;
202
203        // add blob fee
204        if self.tx_type() == TransactionType::Eip4844 {
205            let blob_gas = self.total_blob_gas() as u128;
206            effective_balance_spending = effective_balance_spending
207                .checked_add(U256::from(blob_price).saturating_mul(U256::from(blob_gas)))
208                .ok_or(InvalidTransaction::OverflowPaymentInTransaction)?;
209        }
210
211        Ok(effective_balance_spending)
212    }
213}
214
215#[auto_impl(&, &mut, Box, Arc)]
216pub trait TransactionGetter {
217    type Transaction: Transaction;
218
219    fn tx(&self) -> &Self::Transaction;
220}