Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 5 additions & 6 deletions crates/derive/src/stages/attributes_queue/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ use alloy_eips::eip2718::Encodable2718;
use alloy_rlp::Encodable;
use async_trait::async_trait;
use kona_primitives::{
BlockID, EcotoneTransactionBuilder, FjordTransactionBuilder, L1BlockInfoTx, L2BlockInfo,
L2PayloadAttributes, RawTransaction, RollupConfig,
BlockID, Hardforks, L1BlockInfoTx, L2BlockInfo, L2PayloadAttributes, RawTransaction,
RollupConfig,
};

/// The [AttributesBuilder] is responsible for preparing [L2PayloadAttributes]
Expand Down Expand Up @@ -126,14 +126,13 @@ where
!self.rollup_cfg.is_ecotone_active(l2_parent.block_info.timestamp)
{
upgrade_transactions =
EcotoneTransactionBuilder::build_txs().map_err(BuilderError::Custom)?;
Hardforks::ecotone_txs().into_iter().map(RawTransaction).collect();
}
if self.rollup_cfg.is_fjord_active(next_l2_time) &&
!self.rollup_cfg.is_fjord_active(l2_parent.block_info.timestamp)
{
upgrade_transactions.append(
FjordTransactionBuilder::build_txs().map_err(BuilderError::Custom)?.as_mut(),
);
let mut txs = Hardforks::fjord_txs().into_iter().map(RawTransaction).collect();
upgrade_transactions.append(&mut txs);
}

// Build and encode the L1 info transaction for the current payload.
Expand Down
2 changes: 0 additions & 2 deletions crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ homepage.workspace = true
[dependencies]
# General
anyhow.workspace = true
spin.workspace = true

hashbrown.workspace = true

# Alloy
Expand Down
179 changes: 0 additions & 179 deletions crates/primitives/src/ecotone.rs

This file was deleted.

Loading