You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
geth implement the L2 gas fee like this, how to implement it on reth?
it's fine to implement this on ScrollChainSpec but I wonder if instead we should introduce a new variant in BaseFeeParamsKind which allows for dynamic calculation of the base fee as is required for scroll.
/// A wrapper around [`BaseFeeParams`] that allows for specifying constant or dynamic EIP-1559
/// parameters based on the active [Hardfork].
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum BaseFeeParamsKind {
/// Constant [`BaseFeeParams`]; used for chains that don't have dynamic EIP-1559 parameters
Constant(BaseFeeParams),
/// Variable [`BaseFeeParams`]; used for chains that have dynamic EIP-1559 parameters like
/// Optimism
Variable(ForkBaseFeeParams),
}
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the feature
geth implement the L2 gas fee like this, how to implement it on reth?
it's fine to implement this on ScrollChainSpec but I wonder if instead we should introduce a new variant in BaseFeeParamsKind which allows for dynamic calculation of the base fee as is required for scroll.
Additional context
No response
The text was updated successfully, but these errors were encountered: