From bcc30571c64fd55f54c5065468275e20295e4802 Mon Sep 17 00:00:00 2001 From: jonas089 Date: Wed, 14 Jan 2026 14:49:02 +0100 Subject: [PATCH 1/6] feature gate kzg --- Cargo.lock | 58 +------------------------------ Cargo.toml | 40 ++++++++++----------- crates/ev-precompiles/Cargo.toml | 2 +- crates/ev-precompiles/src/mint.rs | 7 ++-- crates/evolve/Cargo.toml | 6 +++- crates/tests/Cargo.toml | 8 +++-- 6 files changed, 34 insertions(+), 87 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d0e154..d3bda12 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -95,24 +95,6 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" -[[package]] -name = "alloy" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e01db470290bb814e0485fa79aba6e36bb5d221c2e3cfeba5fba05a8a2ca8dad" -dependencies = [ - "alloy-consensus", - "alloy-contract", - "alloy-core", - "alloy-eips", - "alloy-network", - "alloy-provider", - "alloy-rpc-client", - "alloy-signer", - "alloy-transport", - "alloy-transport-http", -] - [[package]] name = "alloy-chains" version = "0.2.6" @@ -170,40 +152,6 @@ dependencies = [ "serde", ] -[[package]] -name = "alloy-contract" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5903097e4c131ad2dd80d87065f23c715ccb9cdb905fa169dffab8e1e798bae" -dependencies = [ - "alloy-consensus", - "alloy-dyn-abi", - "alloy-json-abi", - "alloy-network", - "alloy-network-primitives", - "alloy-primitives", - "alloy-provider", - "alloy-rpc-types-eth", - "alloy-sol-types", - "alloy-transport", - "futures", - "futures-util", - "serde_json", - "thiserror 2.0.12", -] - -[[package]] -name = "alloy-core" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ca96214615ec8cf3fa2a54b32f486eb49100ca7fe7eb0b8c1137cd316e7250a" -dependencies = [ - "alloy-dyn-abi", - "alloy-json-abi", - "alloy-primitives", - "alloy-sol-types", -] - [[package]] name = "alloy-dyn-abi" version = "1.4.1" @@ -778,7 +726,6 @@ version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d792e205ed3b72f795a8044c52877d2e6b6e9b1d13f431478121d8d4eaa9028" dependencies = [ - "alloy-json-abi", "alloy-sol-macro-input", "const-hex", "heck", @@ -797,14 +744,12 @@ version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bd1247a8f90b465ef3f1207627547ec16940c35597875cdc09c49d58b19693c" dependencies = [ - "alloy-json-abi", "const-hex", "dunce", "heck", "macro-string", "proc-macro2", "quote", - "serde_json", "syn 2.0.104", "syn-solidity", ] @@ -2938,9 +2883,9 @@ dependencies = [ name = "ev-precompiles" version = "0.1.0" dependencies = [ - "alloy", "alloy-evm", "alloy-primitives", + "alloy-sol-types", "bytes", "eyre", "reth-ethereum", @@ -8114,7 +8059,6 @@ version = "1.8.4" source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", - "c-kzg", "once_cell", "reth-ethereum-forks", "reth-ethereum-primitives", diff --git a/Cargo.toml b/Cargo.toml index d3babc7..de7a5b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,12 +2,12 @@ resolver = "2" members = [ "bin/ev-reth", - "crates/common", - "crates/evolve", - "crates/node", - "crates/tests", - "crates/ev-precompiles", - "crates/ev-revm", + "crates/common", + "crates/evolve", + "crates/node", + "crates/tests", + "crates/ev-precompiles", + "crates/ev-revm", ] [workspace.package] @@ -43,7 +43,7 @@ reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth.git", tag reth-provider = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-storage-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-tracing = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } reth-network = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-network-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-chain-state = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } @@ -54,18 +54,18 @@ reth-engine-local = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1 reth-engine-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-ethereum-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-e2e-test-utils = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-evm = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-evm-ethereum = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-e2e-test-utils = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } +reth-evm = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.4" } +reth-evm-ethereum = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.4" } reth-execution-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-node-core = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-node-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-payload-builder-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-payload-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-primitives = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.4" } reth-ethereum-forks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-revm = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-revm = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.4" } reth-rpc-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-rpc-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } reth-rpc-engine-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } @@ -86,14 +86,10 @@ reth-tasks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", revm = { version = "29.0.1", default-features = false } revm-context-interface = { version = "10.2.0", default-features = false } -# Alloy dependencies -alloy = { version = "1.0.37", features = [ +alloy = { version = "1.0.37", default-features = false, features = [ "contract", - "providers", - "provider-http", - "signers", - "reqwest-rustls-tls", -], default-features = false } +] } +# Alloy dependencies # Alloy family versions aligned to 1.0.37 compatibility (reth v1.8.4) alloy-evm = { version = "0.21.3", default-features = false } alloy-eips = { version = "1.0.37", default-features = false } @@ -112,12 +108,14 @@ alloy-genesis = { version = "1.0.37", default-features = false } alloy-rpc-types-txpool = { version = "1.0.37", default-features = false } alloy-sol-types = { version = "1.3.1", default-features = false } -revm-inspector = { version = "10.0.1" } +revm-inspector = { version = "10.0.1", default-features = false } # Core dependencies eyre = "0.6" tracing = "0.1" tokio = { version = "1.38", features = ["full"] } -serde = { version = "=1.0.228", default-features = false, features = ["derive"] } +serde = { version = "=1.0.228", default-features = false, features = [ + "derive", +] } serde_json = "1.0" thiserror = "2.0" async-trait = "0.1" diff --git a/crates/ev-precompiles/Cargo.toml b/crates/ev-precompiles/Cargo.toml index 2e11aa0..6939fd1 100644 --- a/crates/ev-precompiles/Cargo.toml +++ b/crates/ev-precompiles/Cargo.toml @@ -17,7 +17,7 @@ revm = { workspace = true } # EVM alloy-primitives = { workspace = true } alloy-evm = { workspace = true } -alloy = { workspace = true } +alloy-sol-types = { workspace = true } bytes = "1.5.0" # Tooling diff --git a/crates/ev-precompiles/src/mint.rs b/crates/ev-precompiles/src/mint.rs index b25b3a0..588bff7 100644 --- a/crates/ev-precompiles/src/mint.rs +++ b/crates/ev-precompiles/src/mint.rs @@ -1,15 +1,12 @@ // Mint precompile -use alloy::{ - sol, - sol_types::{SolInterface, SolValue}, -}; use alloy_evm::{ precompiles::{Precompile, PrecompileInput}, revm::precompile::{PrecompileError, PrecompileId, PrecompileResult}, EvmInternals, EvmInternalsError, }; use alloy_primitives::{address, Address, Bytes, U256}; +use alloy_sol_types::{sol, SolInterface, SolValue}; use revm::{bytecode::Bytecode, precompile::PrecompileOutput}; use std::sync::OnceLock; @@ -252,8 +249,8 @@ impl Precompile for MintPrecompile { #[cfg(test)] mod tests { use super::*; - use alloy::sol_types::SolCall; use alloy_primitives::address; + use alloy_sol_types::SolCall; use revm::{ context::{ journal::{Journal, JournalInner}, diff --git a/crates/evolve/Cargo.toml b/crates/evolve/Cargo.toml index b9d2dcb..0adf788 100644 --- a/crates/evolve/Cargo.toml +++ b/crates/evolve/Cargo.toml @@ -14,7 +14,7 @@ reth-payload-primitives.workspace = true reth-primitives.workspace = true reth-primitives-traits.workspace = true reth-engine-primitives.workspace = true -reth-transaction-pool.workspace = true +reth-transaction-pool = { workspace = true, optional = true } reth-consensus.workspace = true reth-consensus-common.workspace = true reth-ethereum-consensus.workspace = true @@ -43,5 +43,9 @@ eyre.workspace = true [dev-dependencies] serde_json.workspace = true +[features] +default = ["pool"] +pool = ["reth-transaction-pool"] + [lints] workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index ea4a864..e3c7980 100644 --- a/crates/tests/Cargo.toml +++ b/crates/tests/Cargo.toml @@ -21,7 +21,7 @@ ev-precompiles = { path = "../ev-precompiles" } reth-testing-utils.workspace = true reth-db.workspace = true reth-evm-ethereum.workspace = true -reth-transaction-pool.workspace = true +reth-transaction-pool = { workspace = true, optional = true } reth-consensus.workspace = true reth-tasks.workspace = true reth-tracing.workspace = true @@ -42,7 +42,7 @@ reth-errors.workspace = true reth-engine-primitives.workspace = true reth-ethereum-primitives.workspace = true reth-chainspec.workspace = true -reth-e2e-test-utils.workspace = true +reth-e2e-test-utils = { workspace = true, optional = true } reth-rpc-api.workspace = true # Alloy dependencies @@ -71,5 +71,9 @@ futures.workspace = true eyre.workspace = true tracing.workspace = true +[features] +default = ["test-helpers"] +test-helpers = ["reth-e2e-test-utils", "reth-transaction-pool"] + [lints] workspace = true From 44df302fc49c41ffd7da852a0d05baebfe55b3ec Mon Sep 17 00:00:00 2001 From: jonas089 Date: Wed, 14 Jan 2026 14:54:32 +0100 Subject: [PATCH 2/6] wip --- crates/evolve/Cargo.toml | 6 +----- crates/tests/Cargo.toml | 8 ++------ 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/crates/evolve/Cargo.toml b/crates/evolve/Cargo.toml index 0adf788..b9d2dcb 100644 --- a/crates/evolve/Cargo.toml +++ b/crates/evolve/Cargo.toml @@ -14,7 +14,7 @@ reth-payload-primitives.workspace = true reth-primitives.workspace = true reth-primitives-traits.workspace = true reth-engine-primitives.workspace = true -reth-transaction-pool = { workspace = true, optional = true } +reth-transaction-pool.workspace = true reth-consensus.workspace = true reth-consensus-common.workspace = true reth-ethereum-consensus.workspace = true @@ -43,9 +43,5 @@ eyre.workspace = true [dev-dependencies] serde_json.workspace = true -[features] -default = ["pool"] -pool = ["reth-transaction-pool"] - [lints] workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index e3c7980..ea4a864 100644 --- a/crates/tests/Cargo.toml +++ b/crates/tests/Cargo.toml @@ -21,7 +21,7 @@ ev-precompiles = { path = "../ev-precompiles" } reth-testing-utils.workspace = true reth-db.workspace = true reth-evm-ethereum.workspace = true -reth-transaction-pool = { workspace = true, optional = true } +reth-transaction-pool.workspace = true reth-consensus.workspace = true reth-tasks.workspace = true reth-tracing.workspace = true @@ -42,7 +42,7 @@ reth-errors.workspace = true reth-engine-primitives.workspace = true reth-ethereum-primitives.workspace = true reth-chainspec.workspace = true -reth-e2e-test-utils = { workspace = true, optional = true } +reth-e2e-test-utils.workspace = true reth-rpc-api.workspace = true # Alloy dependencies @@ -71,9 +71,5 @@ futures.workspace = true eyre.workspace = true tracing.workspace = true -[features] -default = ["test-helpers"] -test-helpers = ["reth-e2e-test-utils", "reth-transaction-pool"] - [lints] workspace = true From b0e1aff988c723fb0a2f87f2d8990272438248ff Mon Sep 17 00:00:00 2001 From: jonas089 Date: Wed, 14 Jan 2026 15:12:06 +0100 Subject: [PATCH 3/6] wip --- Cargo.lock | 21 ++++++++++++++++++++- crates/ev-precompiles/Cargo.toml | 2 +- crates/ev-precompiles/src/mint.rs | 7 +++++-- 3 files changed, 26 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d3bda12..1c2bc1d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -95,6 +95,15 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" +[[package]] +name = "alloy" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3cb837e538ce3eac04e357ef47b8acead0b14c83ec6bcafedd167e6a60c40876" +dependencies = [ + "alloy-core", +] + [[package]] name = "alloy-chains" version = "0.2.6" @@ -152,6 +161,16 @@ dependencies = [ "serde", ] +[[package]] +name = "alloy-core" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca96214615ec8cf3fa2a54b32f486eb49100ca7fe7eb0b8c1137cd316e7250a" +dependencies = [ + "alloy-primitives", + "alloy-sol-types", +] + [[package]] name = "alloy-dyn-abi" version = "1.4.1" @@ -2883,9 +2902,9 @@ dependencies = [ name = "ev-precompiles" version = "0.1.0" dependencies = [ + "alloy", "alloy-evm", "alloy-primitives", - "alloy-sol-types", "bytes", "eyre", "reth-ethereum", diff --git a/crates/ev-precompiles/Cargo.toml b/crates/ev-precompiles/Cargo.toml index 6939fd1..ac95120 100644 --- a/crates/ev-precompiles/Cargo.toml +++ b/crates/ev-precompiles/Cargo.toml @@ -17,7 +17,7 @@ revm = { workspace = true } # EVM alloy-primitives = { workspace = true } alloy-evm = { workspace = true } -alloy-sol-types = { workspace = true } +alloy = { version = "1.0.37", default-features = false, features = ["sol-types"] } bytes = "1.5.0" # Tooling diff --git a/crates/ev-precompiles/src/mint.rs b/crates/ev-precompiles/src/mint.rs index 588bff7..b25b3a0 100644 --- a/crates/ev-precompiles/src/mint.rs +++ b/crates/ev-precompiles/src/mint.rs @@ -1,12 +1,15 @@ // Mint precompile +use alloy::{ + sol, + sol_types::{SolInterface, SolValue}, +}; use alloy_evm::{ precompiles::{Precompile, PrecompileInput}, revm::precompile::{PrecompileError, PrecompileId, PrecompileResult}, EvmInternals, EvmInternalsError, }; use alloy_primitives::{address, Address, Bytes, U256}; -use alloy_sol_types::{sol, SolInterface, SolValue}; use revm::{bytecode::Bytecode, precompile::PrecompileOutput}; use std::sync::OnceLock; @@ -249,8 +252,8 @@ impl Precompile for MintPrecompile { #[cfg(test)] mod tests { use super::*; + use alloy::sol_types::SolCall; use alloy_primitives::address; - use alloy_sol_types::SolCall; use revm::{ context::{ journal::{Journal, JournalInner}, From f78b503f79f921fa62da776d6a6da6ef14e11c93 Mon Sep 17 00:00:00 2001 From: jonas089 Date: Wed, 14 Jan 2026 15:19:16 +0100 Subject: [PATCH 4/6] use alloy --- Cargo.lock | 39 ++++++++++++++++++++++++++++++-- Cargo.toml | 3 ++- crates/ev-precompiles/Cargo.toml | 2 +- 3 files changed, 40 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1c2bc1d..e2e6998 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -97,11 +97,19 @@ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" [[package]] name = "alloy" -version = "1.4.2" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cb837e538ce3eac04e357ef47b8acead0b14c83ec6bcafedd167e6a60c40876" +checksum = "7f6cfe35f100bc496007c9a00f90b88bdf565f1421d4c707c9f07e0717e2aaad" dependencies = [ + "alloy-consensus", + "alloy-contract", "alloy-core", + "alloy-eips", + "alloy-network", + "alloy-provider", + "alloy-rpc-client", + "alloy-transport", + "alloy-transport-http", ] [[package]] @@ -161,12 +169,36 @@ dependencies = [ "serde", ] +[[package]] +name = "alloy-contract" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5903097e4c131ad2dd80d87065f23c715ccb9cdb905fa169dffab8e1e798bae" +dependencies = [ + "alloy-consensus", + "alloy-dyn-abi", + "alloy-json-abi", + "alloy-network", + "alloy-network-primitives", + "alloy-primitives", + "alloy-provider", + "alloy-rpc-types-eth", + "alloy-sol-types", + "alloy-transport", + "futures", + "futures-util", + "serde_json", + "thiserror 2.0.12", +] + [[package]] name = "alloy-core" version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ca96214615ec8cf3fa2a54b32f486eb49100ca7fe7eb0b8c1137cd316e7250a" dependencies = [ + "alloy-dyn-abi", + "alloy-json-abi", "alloy-primitives", "alloy-sol-types", ] @@ -745,6 +777,7 @@ version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d792e205ed3b72f795a8044c52877d2e6b6e9b1d13f431478121d8d4eaa9028" dependencies = [ + "alloy-json-abi", "alloy-sol-macro-input", "const-hex", "heck", @@ -763,12 +796,14 @@ version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bd1247a8f90b465ef3f1207627547ec16940c35597875cdc09c49d58b19693c" dependencies = [ + "alloy-json-abi", "const-hex", "dunce", "heck", "macro-string", "proc-macro2", "quote", + "serde_json", "syn 2.0.104", "syn-solidity", ] diff --git a/Cargo.toml b/Cargo.toml index de7a5b6..6de2dbb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -86,8 +86,9 @@ reth-tasks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", revm = { version = "29.0.1", default-features = false } revm-context-interface = { version = "10.2.0", default-features = false } -alloy = { version = "1.0.37", default-features = false, features = [ +alloy = { version = "=1.0.37", default-features = false, features = [ "contract", + "sol-types", ] } # Alloy dependencies # Alloy family versions aligned to 1.0.37 compatibility (reth v1.8.4) diff --git a/crates/ev-precompiles/Cargo.toml b/crates/ev-precompiles/Cargo.toml index ac95120..2e11aa0 100644 --- a/crates/ev-precompiles/Cargo.toml +++ b/crates/ev-precompiles/Cargo.toml @@ -17,7 +17,7 @@ revm = { workspace = true } # EVM alloy-primitives = { workspace = true } alloy-evm = { workspace = true } -alloy = { version = "1.0.37", default-features = false, features = ["sol-types"] } +alloy = { workspace = true } bytes = "1.5.0" # Tooling From c1641fae618368b669c8dd0792dd1099f1895ad7 Mon Sep 17 00:00:00 2001 From: jonas089 Date: Wed, 14 Jan 2026 15:24:58 +0100 Subject: [PATCH 5/6] wip --- Cargo.lock | 441 ++++++++++++++++++++++++++--------------------------- Cargo.toml | 112 +++++++------- 2 files changed, 276 insertions(+), 277 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e2e6998..b0a8a35 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6342,8 +6342,8 @@ checksum = "95325155c684b1c89f7765e30bc1c42e4a6da51ca513615660cb8a62ef9a88e3" [[package]] name = "reth-basic-payload-builder" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6366,8 +6366,8 @@ dependencies = [ [[package]] name = "reth-chain-state" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6397,8 +6397,8 @@ dependencies = [ [[package]] name = "reth-chainspec" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-chains", "alloy-consensus", @@ -6417,8 +6417,8 @@ dependencies = [ [[package]] name = "reth-cli" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-genesis", "clap", @@ -6431,8 +6431,8 @@ dependencies = [ [[package]] name = "reth-cli-commands" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-chains", "alloy-consensus", @@ -6512,8 +6512,8 @@ dependencies = [ [[package]] name = "reth-cli-runner" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "reth-tasks", "tokio", @@ -6522,8 +6522,8 @@ dependencies = [ [[package]] name = "reth-cli-util" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eips", "alloy-primitives", @@ -6541,8 +6541,8 @@ dependencies = [ [[package]] name = "reth-codecs" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6561,8 +6561,8 @@ dependencies = [ [[package]] name = "reth-codecs-derive" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "convert_case", "proc-macro2", @@ -6572,8 +6572,8 @@ dependencies = [ [[package]] name = "reth-config" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "eyre", "humantime-serde", @@ -6587,8 +6587,8 @@ dependencies = [ [[package]] name = "reth-consensus" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -6600,8 +6600,8 @@ dependencies = [ [[package]] name = "reth-consensus-common" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6612,8 +6612,8 @@ dependencies = [ [[package]] name = "reth-consensus-debug-client" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6638,8 +6638,8 @@ dependencies = [ [[package]] name = "reth-db" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "derive_more", @@ -6664,8 +6664,8 @@ dependencies = [ [[package]] name = "reth-db-api" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-genesis", @@ -6692,8 +6692,8 @@ dependencies = [ [[package]] name = "reth-db-common" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-genesis", @@ -6722,8 +6722,8 @@ dependencies = [ [[package]] name = "reth-db-models" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eips", "alloy-primitives", @@ -6737,8 +6737,8 @@ dependencies = [ [[package]] name = "reth-discv4" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -6763,8 +6763,8 @@ dependencies = [ [[package]] name = "reth-discv5" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -6787,8 +6787,8 @@ dependencies = [ [[package]] name = "reth-dns-discovery" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "data-encoding", @@ -6811,8 +6811,8 @@ dependencies = [ [[package]] name = "reth-downloaders" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6846,8 +6846,8 @@ dependencies = [ [[package]] name = "reth-e2e-test-utils" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6903,8 +6903,8 @@ dependencies = [ [[package]] name = "reth-ecies" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "aes", "alloy-primitives", @@ -6934,8 +6934,8 @@ dependencies = [ [[package]] name = "reth-engine-local" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -6956,8 +6956,8 @@ dependencies = [ [[package]] name = "reth-engine-primitives" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6981,8 +6981,8 @@ dependencies = [ [[package]] name = "reth-engine-service" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "futures", "pin-project", @@ -7004,8 +7004,8 @@ dependencies = [ [[package]] name = "reth-engine-tree" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7058,8 +7058,8 @@ dependencies = [ [[package]] name = "reth-engine-util" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-rpc-types-engine", @@ -7086,8 +7086,8 @@ dependencies = [ [[package]] name = "reth-era" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7102,8 +7102,8 @@ dependencies = [ [[package]] name = "reth-era-downloader" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "bytes", @@ -7117,8 +7117,8 @@ dependencies = [ [[package]] name = "reth-era-utils" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -7139,8 +7139,8 @@ dependencies = [ [[package]] name = "reth-errors" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "reth-consensus", "reth-execution-errors", @@ -7150,8 +7150,8 @@ dependencies = [ [[package]] name = "reth-eth-wire" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-chains", "alloy-primitives", @@ -7179,8 +7179,8 @@ dependencies = [ [[package]] name = "reth-eth-wire-types" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-chains", "alloy-consensus", @@ -7203,8 +7203,8 @@ dependencies = [ [[package]] name = "reth-ethereum" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-rpc-types-engine", "alloy-rpc-types-eth", @@ -7243,8 +7243,8 @@ dependencies = [ [[package]] name = "reth-ethereum-cli" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "clap", "eyre", @@ -7265,8 +7265,8 @@ dependencies = [ [[package]] name = "reth-ethereum-consensus" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7281,8 +7281,8 @@ dependencies = [ [[package]] name = "reth-ethereum-engine-primitives" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eips", "alloy-primitives", @@ -7299,8 +7299,8 @@ dependencies = [ [[package]] name = "reth-ethereum-forks" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eip2124", "alloy-hardforks", @@ -7313,8 +7313,8 @@ dependencies = [ [[package]] name = "reth-ethereum-payload-builder" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7342,8 +7342,8 @@ dependencies = [ [[package]] name = "reth-ethereum-primitives" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7362,8 +7362,8 @@ dependencies = [ [[package]] name = "reth-etl" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "rayon", "reth-db-api", @@ -7372,8 +7372,8 @@ dependencies = [ [[package]] name = "reth-evm" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7395,8 +7395,8 @@ dependencies = [ [[package]] name = "reth-evm-ethereum" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7416,8 +7416,8 @@ dependencies = [ [[package]] name = "reth-execution-errors" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-evm", "alloy-primitives", @@ -7429,8 +7429,8 @@ dependencies = [ [[package]] name = "reth-execution-types" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7447,8 +7447,8 @@ dependencies = [ [[package]] name = "reth-exex" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7485,8 +7485,8 @@ dependencies = [ [[package]] name = "reth-exex-types" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eips", "alloy-primitives", @@ -7499,8 +7499,8 @@ dependencies = [ [[package]] name = "reth-fs-util" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "serde", "serde_json", @@ -7509,8 +7509,8 @@ dependencies = [ [[package]] name = "reth-invalid-block-hooks" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -7536,8 +7536,8 @@ dependencies = [ [[package]] name = "reth-ipc" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "bytes", "futures", @@ -7556,8 +7556,8 @@ dependencies = [ [[package]] name = "reth-libmdbx" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "bitflags 2.10.0", "byteorder", @@ -7572,8 +7572,8 @@ dependencies = [ [[package]] name = "reth-mdbx-sys" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "bindgen 0.71.1", "cc", @@ -7581,8 +7581,8 @@ dependencies = [ [[package]] name = "reth-metrics" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "futures", "metrics", @@ -7593,16 +7593,16 @@ dependencies = [ [[package]] name = "reth-net-banlist" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", ] [[package]] name = "reth-net-nat" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "futures-util", "if-addrs", @@ -7615,8 +7615,8 @@ dependencies = [ [[package]] name = "reth-network" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7670,8 +7670,8 @@ dependencies = [ [[package]] name = "reth-network-api" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -7695,8 +7695,8 @@ dependencies = [ [[package]] name = "reth-network-p2p" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7718,8 +7718,8 @@ dependencies = [ [[package]] name = "reth-network-peers" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -7733,8 +7733,8 @@ dependencies = [ [[package]] name = "reth-network-types" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eip2124", "humantime-serde", @@ -7747,8 +7747,8 @@ dependencies = [ [[package]] name = "reth-nippy-jar" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "anyhow", "bincode", @@ -7764,8 +7764,8 @@ dependencies = [ [[package]] name = "reth-node-api" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-rpc-types-engine", "eyre", @@ -7788,8 +7788,8 @@ dependencies = [ [[package]] name = "reth-node-builder" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7856,8 +7856,8 @@ dependencies = [ [[package]] name = "reth-node-core" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7908,8 +7908,8 @@ dependencies = [ [[package]] name = "reth-node-ethereum" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eips", "alloy-network", @@ -7946,8 +7946,8 @@ dependencies = [ [[package]] name = "reth-node-ethstats" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -7970,8 +7970,8 @@ dependencies = [ [[package]] name = "reth-node-events" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7994,8 +7994,8 @@ dependencies = [ [[package]] name = "reth-node-metrics" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "eyre", "http 1.3.1", @@ -8015,8 +8015,8 @@ dependencies = [ [[package]] name = "reth-node-types" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "reth-chainspec", "reth-db-api", @@ -8027,8 +8027,8 @@ dependencies = [ [[package]] name = "reth-optimism-primitives" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8046,8 +8046,8 @@ dependencies = [ [[package]] name = "reth-payload-builder" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -8067,8 +8067,8 @@ dependencies = [ [[package]] name = "reth-payload-builder-primitives" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "pin-project", "reth-payload-primitives", @@ -8079,8 +8079,8 @@ dependencies = [ [[package]] name = "reth-payload-primitives" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eips", "alloy-primitives", @@ -8099,8 +8099,8 @@ dependencies = [ [[package]] name = "reth-payload-validator" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-rpc-types-engine", @@ -8109,8 +8109,8 @@ dependencies = [ [[package]] name = "reth-primitives" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "once_cell", @@ -8122,8 +8122,8 @@ dependencies = [ [[package]] name = "reth-primitives-traits" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8155,8 +8155,8 @@ dependencies = [ [[package]] name = "reth-provider" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8200,8 +8200,8 @@ dependencies = [ [[package]] name = "reth-prune" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8228,8 +8228,8 @@ dependencies = [ [[package]] name = "reth-prune-types" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "arbitrary", @@ -8237,14 +8237,13 @@ dependencies = [ "modular-bitfield", "reth-codecs", "serde", - "strum 0.27.2", "thiserror 2.0.12", ] [[package]] name = "reth-revm" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "reth-primitives-traits", @@ -8256,8 +8255,8 @@ dependencies = [ [[package]] name = "reth-rpc" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-dyn-abi", @@ -8335,8 +8334,8 @@ dependencies = [ [[package]] name = "reth-rpc-api" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eips", "alloy-genesis", @@ -8363,8 +8362,8 @@ dependencies = [ [[package]] name = "reth-rpc-builder" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-network", "alloy-provider", @@ -8402,8 +8401,8 @@ dependencies = [ [[package]] name = "reth-rpc-convert" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-json-rpc", @@ -8423,8 +8422,8 @@ dependencies = [ [[package]] name = "reth-rpc-engine-api" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eips", "alloy-primitives", @@ -8453,8 +8452,8 @@ dependencies = [ [[package]] name = "reth-rpc-eth-api" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-dyn-abi", @@ -8497,8 +8496,8 @@ dependencies = [ [[package]] name = "reth-rpc-eth-types" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8544,8 +8543,8 @@ dependencies = [ [[package]] name = "reth-rpc-layer" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-rpc-types-engine", "http 1.3.1", @@ -8558,8 +8557,8 @@ dependencies = [ [[package]] name = "reth-rpc-server-types" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eips", "alloy-primitives", @@ -8574,8 +8573,8 @@ dependencies = [ [[package]] name = "reth-stages" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8622,8 +8621,8 @@ dependencies = [ [[package]] name = "reth-stages-api" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eips", "alloy-primitives", @@ -8649,8 +8648,8 @@ dependencies = [ [[package]] name = "reth-stages-types" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "arbitrary", @@ -8663,8 +8662,8 @@ dependencies = [ [[package]] name = "reth-static-file" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "parking_lot", @@ -8683,8 +8682,8 @@ dependencies = [ [[package]] name = "reth-static-file-types" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "clap", @@ -8695,8 +8694,8 @@ dependencies = [ [[package]] name = "reth-storage-api" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8718,8 +8717,8 @@ dependencies = [ [[package]] name = "reth-storage-errors" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-eips", "alloy-primitives", @@ -8734,8 +8733,8 @@ dependencies = [ [[package]] name = "reth-tasks" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "auto_impl", "dyn-clone", @@ -8752,8 +8751,8 @@ dependencies = [ [[package]] name = "reth-testing-utils" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8768,8 +8767,8 @@ dependencies = [ [[package]] name = "reth-tokio-util" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "tokio", "tokio-stream", @@ -8778,8 +8777,8 @@ dependencies = [ [[package]] name = "reth-tracing" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "clap", "eyre", @@ -8793,8 +8792,8 @@ dependencies = [ [[package]] name = "reth-tracing-otlp" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "opentelemetry", "opentelemetry-otlp", @@ -8807,8 +8806,8 @@ dependencies = [ [[package]] name = "reth-transaction-pool" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8850,8 +8849,8 @@ dependencies = [ [[package]] name = "reth-trie" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8875,8 +8874,8 @@ dependencies = [ [[package]] name = "reth-trie-common" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -8901,8 +8900,8 @@ dependencies = [ [[package]] name = "reth-trie-db" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "reth-db-api", @@ -8914,8 +8913,8 @@ dependencies = [ [[package]] name = "reth-trie-parallel" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -8939,8 +8938,8 @@ dependencies = [ [[package]] name = "reth-trie-sparse" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -8958,8 +8957,8 @@ dependencies = [ [[package]] name = "reth-trie-sparse-parallel" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -8976,8 +8975,8 @@ dependencies = [ [[package]] name = "reth-zstd-compressors" -version = "1.8.4" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" +version = "1.8.3" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" dependencies = [ "zstd", ] diff --git a/Cargo.toml b/Cargo.toml index 6de2dbb..9cf2f83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,68 +20,68 @@ repository = "https://github.com/evstack/ev-reth" authors = ["Evolve Stack Contributors"] [workspace.dependencies] -# Reth dependencies - Using v1.8.4 stable -reth-chainspec = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-cli = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-cli-util = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-rpc-eth-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-tracing-otlp = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-node-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-node-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-errors = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-optimism-node = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-optimism-cli = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-optimism-rpc = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-optimism-forks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-trie-db = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-trie-common = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-rpc-eth-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-provider = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-storage-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-tracing = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } -reth-network = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-network-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-chain-state = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-ethereum = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-ethereum-cli = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-basic-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-engine-local = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-engine-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-ethereum-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-e2e-test-utils = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } -reth-evm = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.4" } -reth-evm-ethereum = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.4" } -reth-execution-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-node-core = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-node-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-payload-builder-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-payload-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-primitives = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.4" } -reth-ethereum-forks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-revm = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.4" } -reth-rpc-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-rpc-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } -reth-rpc-engine-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +# Reth dependencies - Using v1.8.3 stable +reth-chainspec = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-cli = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-cli-util = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-rpc-eth-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-tracing-otlp = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-node-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-node-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-errors = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-optimism-node = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-optimism-cli = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-optimism-rpc = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-optimism-forks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-trie-db = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-trie-common = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-rpc-eth-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-provider = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-storage-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-tracing = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } +reth-network = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-network-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-chain-state = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-ethereum = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-ethereum-cli = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-basic-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-engine-local = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-engine-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-ethereum-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-e2e-test-utils = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } +reth-evm = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.3" } +reth-evm-ethereum = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.3" } +reth-execution-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-node-core = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-node-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-payload-builder-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-payload-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-primitives = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.3" } +reth-ethereum-forks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-revm = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.3" } +reth-rpc-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-rpc-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +reth-rpc-engine-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } ev-revm = { path = "crates/ev-revm" } # Consensus dependencies -reth-consensus = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } -reth-consensus-common = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } -reth-ethereum-consensus = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } +reth-consensus = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } +reth-consensus-common = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } +reth-ethereum-consensus = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } # Test dependencies -reth-testing-utils = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } -reth-db = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } -reth-tasks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } +reth-testing-utils = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } +reth-db = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } +reth-tasks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } revm = { version = "29.0.1", default-features = false } revm-context-interface = { version = "10.2.0", default-features = false } @@ -91,7 +91,7 @@ alloy = { version = "=1.0.37", default-features = false, features = [ "sol-types", ] } # Alloy dependencies -# Alloy family versions aligned to 1.0.37 compatibility (reth v1.8.4) +# Alloy family versions aligned to 1.0.37 compatibility (reth v1.8.3) alloy-evm = { version = "0.21.3", default-features = false } alloy-eips = { version = "1.0.37", default-features = false } alloy-network = { version = "1.0.37", default-features = false } From cb2f734fc44cbfbcb1e2b270063ac574442e686f Mon Sep 17 00:00:00 2001 From: jonas089 Date: Mon, 26 Jan 2026 14:05:28 +0100 Subject: [PATCH 6/6] update to 1.8.4 --- Cargo.lock | 441 +++++++++++++++++++++++++++-------------------------- Cargo.toml | 112 +++++++------- 2 files changed, 277 insertions(+), 276 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b0a8a35..e2e6998 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6342,8 +6342,8 @@ checksum = "95325155c684b1c89f7765e30bc1c42e4a6da51ca513615660cb8a62ef9a88e3" [[package]] name = "reth-basic-payload-builder" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6366,8 +6366,8 @@ dependencies = [ [[package]] name = "reth-chain-state" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6397,8 +6397,8 @@ dependencies = [ [[package]] name = "reth-chainspec" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-chains", "alloy-consensus", @@ -6417,8 +6417,8 @@ dependencies = [ [[package]] name = "reth-cli" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-genesis", "clap", @@ -6431,8 +6431,8 @@ dependencies = [ [[package]] name = "reth-cli-commands" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-chains", "alloy-consensus", @@ -6512,8 +6512,8 @@ dependencies = [ [[package]] name = "reth-cli-runner" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "reth-tasks", "tokio", @@ -6522,8 +6522,8 @@ dependencies = [ [[package]] name = "reth-cli-util" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eips", "alloy-primitives", @@ -6541,8 +6541,8 @@ dependencies = [ [[package]] name = "reth-codecs" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6561,8 +6561,8 @@ dependencies = [ [[package]] name = "reth-codecs-derive" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "convert_case", "proc-macro2", @@ -6572,8 +6572,8 @@ dependencies = [ [[package]] name = "reth-config" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "eyre", "humantime-serde", @@ -6587,8 +6587,8 @@ dependencies = [ [[package]] name = "reth-consensus" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -6600,8 +6600,8 @@ dependencies = [ [[package]] name = "reth-consensus-common" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6612,8 +6612,8 @@ dependencies = [ [[package]] name = "reth-consensus-debug-client" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6638,8 +6638,8 @@ dependencies = [ [[package]] name = "reth-db" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "derive_more", @@ -6664,8 +6664,8 @@ dependencies = [ [[package]] name = "reth-db-api" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-genesis", @@ -6692,8 +6692,8 @@ dependencies = [ [[package]] name = "reth-db-common" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-genesis", @@ -6722,8 +6722,8 @@ dependencies = [ [[package]] name = "reth-db-models" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eips", "alloy-primitives", @@ -6737,8 +6737,8 @@ dependencies = [ [[package]] name = "reth-discv4" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -6763,8 +6763,8 @@ dependencies = [ [[package]] name = "reth-discv5" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -6787,8 +6787,8 @@ dependencies = [ [[package]] name = "reth-dns-discovery" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "data-encoding", @@ -6811,8 +6811,8 @@ dependencies = [ [[package]] name = "reth-downloaders" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6846,8 +6846,8 @@ dependencies = [ [[package]] name = "reth-e2e-test-utils" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6903,8 +6903,8 @@ dependencies = [ [[package]] name = "reth-ecies" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "aes", "alloy-primitives", @@ -6934,8 +6934,8 @@ dependencies = [ [[package]] name = "reth-engine-local" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -6956,8 +6956,8 @@ dependencies = [ [[package]] name = "reth-engine-primitives" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -6981,8 +6981,8 @@ dependencies = [ [[package]] name = "reth-engine-service" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "futures", "pin-project", @@ -7004,8 +7004,8 @@ dependencies = [ [[package]] name = "reth-engine-tree" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7058,8 +7058,8 @@ dependencies = [ [[package]] name = "reth-engine-util" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-rpc-types-engine", @@ -7086,8 +7086,8 @@ dependencies = [ [[package]] name = "reth-era" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7102,8 +7102,8 @@ dependencies = [ [[package]] name = "reth-era-downloader" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "bytes", @@ -7117,8 +7117,8 @@ dependencies = [ [[package]] name = "reth-era-utils" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -7139,8 +7139,8 @@ dependencies = [ [[package]] name = "reth-errors" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "reth-consensus", "reth-execution-errors", @@ -7150,8 +7150,8 @@ dependencies = [ [[package]] name = "reth-eth-wire" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-chains", "alloy-primitives", @@ -7179,8 +7179,8 @@ dependencies = [ [[package]] name = "reth-eth-wire-types" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-chains", "alloy-consensus", @@ -7203,8 +7203,8 @@ dependencies = [ [[package]] name = "reth-ethereum" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-rpc-types-engine", "alloy-rpc-types-eth", @@ -7243,8 +7243,8 @@ dependencies = [ [[package]] name = "reth-ethereum-cli" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "clap", "eyre", @@ -7265,8 +7265,8 @@ dependencies = [ [[package]] name = "reth-ethereum-consensus" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7281,8 +7281,8 @@ dependencies = [ [[package]] name = "reth-ethereum-engine-primitives" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eips", "alloy-primitives", @@ -7299,8 +7299,8 @@ dependencies = [ [[package]] name = "reth-ethereum-forks" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eip2124", "alloy-hardforks", @@ -7313,8 +7313,8 @@ dependencies = [ [[package]] name = "reth-ethereum-payload-builder" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7342,8 +7342,8 @@ dependencies = [ [[package]] name = "reth-ethereum-primitives" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7362,8 +7362,8 @@ dependencies = [ [[package]] name = "reth-etl" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "rayon", "reth-db-api", @@ -7372,8 +7372,8 @@ dependencies = [ [[package]] name = "reth-evm" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7395,8 +7395,8 @@ dependencies = [ [[package]] name = "reth-evm-ethereum" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7416,8 +7416,8 @@ dependencies = [ [[package]] name = "reth-execution-errors" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-evm", "alloy-primitives", @@ -7429,8 +7429,8 @@ dependencies = [ [[package]] name = "reth-execution-types" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7447,8 +7447,8 @@ dependencies = [ [[package]] name = "reth-exex" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7485,8 +7485,8 @@ dependencies = [ [[package]] name = "reth-exex-types" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eips", "alloy-primitives", @@ -7499,8 +7499,8 @@ dependencies = [ [[package]] name = "reth-fs-util" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "serde", "serde_json", @@ -7509,8 +7509,8 @@ dependencies = [ [[package]] name = "reth-invalid-block-hooks" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -7536,8 +7536,8 @@ dependencies = [ [[package]] name = "reth-ipc" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "bytes", "futures", @@ -7556,8 +7556,8 @@ dependencies = [ [[package]] name = "reth-libmdbx" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "bitflags 2.10.0", "byteorder", @@ -7572,8 +7572,8 @@ dependencies = [ [[package]] name = "reth-mdbx-sys" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "bindgen 0.71.1", "cc", @@ -7581,8 +7581,8 @@ dependencies = [ [[package]] name = "reth-metrics" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "futures", "metrics", @@ -7593,16 +7593,16 @@ dependencies = [ [[package]] name = "reth-net-banlist" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", ] [[package]] name = "reth-net-nat" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "futures-util", "if-addrs", @@ -7615,8 +7615,8 @@ dependencies = [ [[package]] name = "reth-network" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7670,8 +7670,8 @@ dependencies = [ [[package]] name = "reth-network-api" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -7695,8 +7695,8 @@ dependencies = [ [[package]] name = "reth-network-p2p" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7718,8 +7718,8 @@ dependencies = [ [[package]] name = "reth-network-peers" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -7733,8 +7733,8 @@ dependencies = [ [[package]] name = "reth-network-types" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eip2124", "humantime-serde", @@ -7747,8 +7747,8 @@ dependencies = [ [[package]] name = "reth-nippy-jar" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "anyhow", "bincode", @@ -7764,8 +7764,8 @@ dependencies = [ [[package]] name = "reth-node-api" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-rpc-types-engine", "eyre", @@ -7788,8 +7788,8 @@ dependencies = [ [[package]] name = "reth-node-builder" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7856,8 +7856,8 @@ dependencies = [ [[package]] name = "reth-node-core" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7908,8 +7908,8 @@ dependencies = [ [[package]] name = "reth-node-ethereum" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eips", "alloy-network", @@ -7946,8 +7946,8 @@ dependencies = [ [[package]] name = "reth-node-ethstats" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -7970,8 +7970,8 @@ dependencies = [ [[package]] name = "reth-node-events" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -7994,8 +7994,8 @@ dependencies = [ [[package]] name = "reth-node-metrics" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "eyre", "http 1.3.1", @@ -8015,8 +8015,8 @@ dependencies = [ [[package]] name = "reth-node-types" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "reth-chainspec", "reth-db-api", @@ -8027,8 +8027,8 @@ dependencies = [ [[package]] name = "reth-optimism-primitives" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8046,8 +8046,8 @@ dependencies = [ [[package]] name = "reth-payload-builder" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -8067,8 +8067,8 @@ dependencies = [ [[package]] name = "reth-payload-builder-primitives" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "pin-project", "reth-payload-primitives", @@ -8079,8 +8079,8 @@ dependencies = [ [[package]] name = "reth-payload-primitives" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eips", "alloy-primitives", @@ -8099,8 +8099,8 @@ dependencies = [ [[package]] name = "reth-payload-validator" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-rpc-types-engine", @@ -8109,8 +8109,8 @@ dependencies = [ [[package]] name = "reth-primitives" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "once_cell", @@ -8122,8 +8122,8 @@ dependencies = [ [[package]] name = "reth-primitives-traits" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8155,8 +8155,8 @@ dependencies = [ [[package]] name = "reth-provider" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8200,8 +8200,8 @@ dependencies = [ [[package]] name = "reth-prune" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8228,8 +8228,8 @@ dependencies = [ [[package]] name = "reth-prune-types" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "arbitrary", @@ -8237,13 +8237,14 @@ dependencies = [ "modular-bitfield", "reth-codecs", "serde", + "strum 0.27.2", "thiserror 2.0.12", ] [[package]] name = "reth-revm" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "reth-primitives-traits", @@ -8255,8 +8256,8 @@ dependencies = [ [[package]] name = "reth-rpc" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-dyn-abi", @@ -8334,8 +8335,8 @@ dependencies = [ [[package]] name = "reth-rpc-api" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eips", "alloy-genesis", @@ -8362,8 +8363,8 @@ dependencies = [ [[package]] name = "reth-rpc-builder" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-network", "alloy-provider", @@ -8401,8 +8402,8 @@ dependencies = [ [[package]] name = "reth-rpc-convert" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-json-rpc", @@ -8422,8 +8423,8 @@ dependencies = [ [[package]] name = "reth-rpc-engine-api" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eips", "alloy-primitives", @@ -8452,8 +8453,8 @@ dependencies = [ [[package]] name = "reth-rpc-eth-api" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-dyn-abi", @@ -8496,8 +8497,8 @@ dependencies = [ [[package]] name = "reth-rpc-eth-types" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8543,8 +8544,8 @@ dependencies = [ [[package]] name = "reth-rpc-layer" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-rpc-types-engine", "http 1.3.1", @@ -8557,8 +8558,8 @@ dependencies = [ [[package]] name = "reth-rpc-server-types" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eips", "alloy-primitives", @@ -8573,8 +8574,8 @@ dependencies = [ [[package]] name = "reth-stages" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8621,8 +8622,8 @@ dependencies = [ [[package]] name = "reth-stages-api" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eips", "alloy-primitives", @@ -8648,8 +8649,8 @@ dependencies = [ [[package]] name = "reth-stages-types" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "arbitrary", @@ -8662,8 +8663,8 @@ dependencies = [ [[package]] name = "reth-static-file" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "parking_lot", @@ -8682,8 +8683,8 @@ dependencies = [ [[package]] name = "reth-static-file-types" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "clap", @@ -8694,8 +8695,8 @@ dependencies = [ [[package]] name = "reth-storage-api" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8717,8 +8718,8 @@ dependencies = [ [[package]] name = "reth-storage-errors" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-eips", "alloy-primitives", @@ -8733,8 +8734,8 @@ dependencies = [ [[package]] name = "reth-tasks" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "auto_impl", "dyn-clone", @@ -8751,8 +8752,8 @@ dependencies = [ [[package]] name = "reth-testing-utils" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8767,8 +8768,8 @@ dependencies = [ [[package]] name = "reth-tokio-util" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "tokio", "tokio-stream", @@ -8777,8 +8778,8 @@ dependencies = [ [[package]] name = "reth-tracing" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "clap", "eyre", @@ -8792,8 +8793,8 @@ dependencies = [ [[package]] name = "reth-tracing-otlp" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "opentelemetry", "opentelemetry-otlp", @@ -8806,8 +8807,8 @@ dependencies = [ [[package]] name = "reth-transaction-pool" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8849,8 +8850,8 @@ dependencies = [ [[package]] name = "reth-trie" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-eips", @@ -8874,8 +8875,8 @@ dependencies = [ [[package]] name = "reth-trie-common" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -8900,8 +8901,8 @@ dependencies = [ [[package]] name = "reth-trie-db" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "reth-db-api", @@ -8913,8 +8914,8 @@ dependencies = [ [[package]] name = "reth-trie-parallel" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -8938,8 +8939,8 @@ dependencies = [ [[package]] name = "reth-trie-sparse" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -8957,8 +8958,8 @@ dependencies = [ [[package]] name = "reth-trie-sparse-parallel" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -8975,8 +8976,8 @@ dependencies = [ [[package]] name = "reth-zstd-compressors" -version = "1.8.3" -source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.3#42197415102b7a20be42e4fe919f024b81ceb55b" +version = "1.8.4" +source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.8.4#bde6574bcac266f9858c1a78f8d0da9fd1e5d262" dependencies = [ "zstd", ] diff --git a/Cargo.toml b/Cargo.toml index 9cf2f83..6de2dbb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,68 +20,68 @@ repository = "https://github.com/evstack/ev-reth" authors = ["Evolve Stack Contributors"] [workspace.dependencies] -# Reth dependencies - Using v1.8.3 stable -reth-chainspec = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-cli = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-cli-util = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-rpc-eth-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-tracing-otlp = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-node-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-node-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-errors = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-optimism-node = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-optimism-cli = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-optimism-rpc = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-optimism-forks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-trie-db = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-trie-common = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-rpc-eth-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-provider = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-storage-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-tracing = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } -reth-network = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-network-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-chain-state = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-ethereum = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-ethereum-cli = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-basic-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-engine-local = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-engine-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-ethereum-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-e2e-test-utils = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } -reth-evm = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.3" } -reth-evm-ethereum = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.3" } -reth-execution-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-node-core = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-node-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-payload-builder-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-payload-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-primitives = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.3" } -reth-ethereum-forks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-revm = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.3" } -reth-rpc-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-rpc-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } -reth-rpc-engine-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3" } +# Reth dependencies - Using v1.8.4 stable +reth-chainspec = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-cli = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-cli-util = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-rpc-eth-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-tracing-otlp = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-node-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-node-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-errors = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-optimism-node = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-optimism-cli = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-optimism-rpc = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-optimism-forks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-trie-db = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-trie-common = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-rpc-eth-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-provider = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-storage-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-tracing = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } +reth-network = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-network-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-chain-state = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-ethereum = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-ethereum-cli = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-basic-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-engine-local = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-engine-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-ethereum-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-e2e-test-utils = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } +reth-evm = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.4" } +reth-evm-ethereum = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.4" } +reth-execution-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-node-core = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-node-types = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-payload-builder-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-payload-primitives = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-primitives = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.4" } +reth-ethereum-forks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-revm = { git = "https://github.com/paradigmxyz/reth.git", default-features = false, tag = "v1.8.4" } +reth-rpc-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-rpc-builder = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } +reth-rpc-engine-api = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4" } ev-revm = { path = "crates/ev-revm" } # Consensus dependencies -reth-consensus = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } -reth-consensus-common = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } -reth-ethereum-consensus = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } +reth-consensus = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } +reth-consensus-common = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } +reth-ethereum-consensus = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } # Test dependencies -reth-testing-utils = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } -reth-db = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } -reth-tasks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.3", default-features = false } +reth-testing-utils = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } +reth-db = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } +reth-tasks = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.8.4", default-features = false } revm = { version = "29.0.1", default-features = false } revm-context-interface = { version = "10.2.0", default-features = false } @@ -91,7 +91,7 @@ alloy = { version = "=1.0.37", default-features = false, features = [ "sol-types", ] } # Alloy dependencies -# Alloy family versions aligned to 1.0.37 compatibility (reth v1.8.3) +# Alloy family versions aligned to 1.0.37 compatibility (reth v1.8.4) alloy-evm = { version = "0.21.3", default-features = false } alloy-eips = { version = "1.0.37", default-features = false } alloy-network = { version = "1.0.37", default-features = false }