diff --git a/Cargo.lock b/Cargo.lock
index 2f00b76c..6965c64a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2596,6 +2596,33 @@ dependencies = [
"thiserror 1.0.69",
]
+[[package]]
+name = "color-eyre"
+version = "0.6.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e5920befb47832a6d61ee3a3a846565cfa39b331331e68a3b1d1116630f2f26d"
+dependencies = [
+ "backtrace",
+ "color-spantrace",
+ "eyre",
+ "indenter",
+ "once_cell",
+ "owo-colors",
+ "tracing-error",
+]
+
+[[package]]
+name = "color-spantrace"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b8b88ea9df13354b55bc7234ebcce36e6ef896aca2e42a15de9e10edce01b427"
+dependencies = [
+ "once_cell",
+ "owo-colors",
+ "tracing-core",
+ "tracing-error",
+]
+
[[package]]
name = "colorchoice"
version = "1.0.4"
@@ -6106,6 +6133,12 @@ version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
+[[package]]
+name = "owo-colors"
+version = "4.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "48dd4f4a2c8405440fd0462561f0e5806bd0f77e86f51c761481bdd4018b545e"
+
[[package]]
name = "p256"
version = "0.13.2"
@@ -10324,6 +10357,7 @@ dependencies = [
"alloy-provider",
"alloy-rpc-client",
"alloy-rpc-types-engine 1.0.24",
+ "alloy-rpc-types-eth",
"alloy-signer",
"alloy-signer-aws",
"alloy-signer-local",
@@ -10332,6 +10366,7 @@ dependencies = [
"aws-config",
"aws-sdk-kms",
"clap",
+ "color-eyre",
"eyre",
"futures",
"reqwest",
@@ -10378,6 +10413,7 @@ dependencies = [
"scroll-alloy-hardforks",
"scroll-alloy-network",
"scroll-alloy-provider",
+ "scroll-alloy-rpc-types",
"scroll-alloy-rpc-types-engine",
"scroll-db",
"scroll-derivation-pipeline",
@@ -12694,6 +12730,16 @@ dependencies = [
"valuable",
]
+[[package]]
+name = "tracing-error"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db"
+dependencies = [
+ "tracing",
+ "tracing-subscriber 0.3.19",
+]
+
[[package]]
name = "tracing-futures"
version = "0.2.5"
diff --git a/crates/derivation-pipeline/src/lib.rs b/crates/derivation-pipeline/src/lib.rs
index dc31ab9c..4ab42776 100644
--- a/crates/derivation-pipeline/src/lib.rs
+++ b/crates/derivation-pipeline/src/lib.rs
@@ -166,14 +166,14 @@ impl
Stream for DerivationPipeline
where
P: L1Provider + Clone + Unpin + Send + Sync + 'static,
{
- type Item = ScrollPayloadAttributesWithBatchInfo;
+ type Item = WithBlockNumber;
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll