@@ -66,6 +66,9 @@ pub mod serde_bincode_compat {
66
66
use alloy_eips:: Typed2718 ;
67
67
68
68
/// Represents a minimal EVM transaction.
69
+ /// Currently, EIP-1559, EIP-4844, and EIP-7702 support dynamic fees.
70
+ /// We call these transactions "dynamic fee transactions".
71
+ /// We call non dynamic fee transactions(EIP-155, EIP-2930) "legacy fee transactions".
69
72
#[ doc( alias = "Tx" ) ]
70
73
#[ auto_impl:: auto_impl( & , Arc ) ]
71
74
pub trait Transaction : Typed2718 + fmt:: Debug + any:: Any + Send + Sync + ' static {
@@ -81,16 +84,17 @@ pub trait Transaction: Typed2718 + fmt::Debug + any::Any + Send + Sync + 'static
81
84
/// Get `gas_price`.
82
85
fn gas_price ( & self ) -> Option < u128 > ;
83
86
84
- /// Returns the EIP-1559 the maximum fee per gas the caller is willing to pay.
87
+ /// For dynamic fee transactions returns the maximum fee per gas the caller is willing to pay.
85
88
///
86
- /// For legacy transactions this is `gas_price`.
89
+ /// For legacy fee transactions this is `gas_price`.
87
90
///
88
91
/// This is also commonly referred to as the "Gas Fee Cap".
89
92
fn max_fee_per_gas ( & self ) -> u128 ;
90
93
91
- /// Returns the EIP-1559 Priority fee the caller is paying to the block author.
94
+ /// For dynamic fee transactions returns the Priority fee the caller is paying to the block
95
+ /// author.
92
96
///
93
- /// This will return `None` for non-EIP1559 transactions
97
+ /// This will return `None` for legacy fee transactions
94
98
fn max_priority_fee_per_gas ( & self ) -> Option < u128 > ;
95
99
96
100
/// Max fee per blob gas for EIP-4844 transaction.
@@ -100,24 +104,24 @@ pub trait Transaction: Typed2718 + fmt::Debug + any::Any + Send + Sync + 'static
100
104
/// This is also commonly referred to as the "Blob Gas Fee Cap".
101
105
fn max_fee_per_blob_gas ( & self ) -> Option < u128 > ;
102
106
103
- /// Return the max priority fee per gas if the transaction is an EIP-1559 transaction, and
107
+ /// Return the max priority fee per gas if the transaction is an dynamic fee transaction, and
104
108
/// otherwise return the gas price.
105
109
///
106
110
/// # Warning
107
111
///
108
112
/// This is different than the `max_priority_fee_per_gas` method, which returns `None` for
109
- /// non-EIP-1559 transactions.
113
+ /// legacy fee transactions.
110
114
fn priority_fee_or_price ( & self ) -> u128 ;
111
115
112
116
/// Returns the effective gas price for the given base fee.
113
117
///
114
- /// If the transaction is a legacy or EIP2930 transaction, the gas price is returned.
118
+ /// If the transaction is a legacy fee transaction, the gas price is returned.
115
119
fn effective_gas_price ( & self , base_fee : Option < u64 > ) -> u128 ;
116
120
117
121
/// Returns the effective tip for this transaction.
118
122
///
119
- /// For EIP-1559 transactions: `min(max_fee_per_gas - base_fee, max_priority_fee_per_gas)`.
120
- /// For legacy transactions: `gas_price - base_fee`.
123
+ /// For dynamic fee transactions: `min(max_fee_per_gas - base_fee, max_priority_fee_per_gas)`.
124
+ /// For legacy fee transactions: `gas_price - base_fee`.
121
125
fn effective_tip_per_gas ( & self , base_fee : u64 ) -> Option < u128 > {
122
126
let base_fee = base_fee as u128 ;
123
127
@@ -131,7 +135,7 @@ pub trait Transaction: Typed2718 + fmt::Debug + any::Any + Send + Sync + 'static
131
135
// Calculate the difference between max_fee_per_gas and base_fee
132
136
let fee = max_fee_per_gas - base_fee;
133
137
134
- // Compare the fee with max_priority_fee_per_gas (or gas price for non-EIP1559 transactions)
138
+ // Compare the fee with max_priority_fee_per_gas (or gas price for legacy fee transactions)
135
139
self . max_priority_fee_per_gas ( )
136
140
. map_or ( Some ( fee) , |priority_fee| Some ( fee. min ( priority_fee) ) )
137
141
}
0 commit comments