From 00e60a6316006e37cba32e81c20bf88268d71ebe 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 | 45 ++++++++++-------------- 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(+), 92 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 318aaf1..d397f0b 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", ] @@ -2939,9 +2884,9 @@ dependencies = [ name = "ev-precompiles" version = "0.1.0" dependencies = [ - "alloy", "alloy-evm", "alloy-primitives", + "alloy-sol-types", "bytes", "eyre", "reth-ethereum", @@ -8115,7 +8060,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 bb0d0c9..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,19 +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 } -# vergen 9.1.0 requires vergen-lib 9.1.0, but reth v1.8.4 uses vergen-git2 1.0.7 -# which depends on vergen-lib 0.1.6. This causes trait incompatibility errors. -# TODO: Remove this pin when upgrading to reth >= v1.10.0 (uses vergen-git2 9.1.0) -vergen = "=9.0.6" - -# 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 } @@ -117,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 3ab12206615744b597b3c3fbe2921fbe19d76e44 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 c2652e70a6943d63ad11f767d34904e0d0dafeab 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 d397f0b..ae63537 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" @@ -2884,9 +2903,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 6bb55347a9994da458fa2d9149df32f132aa12b7 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 ae63537..8bcdf71 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 0a6e76fc79c8e580784b4c2b073f8e84fec14c36 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 8bcdf71..1688ddf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6343,8 +6343,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", @@ -6367,8 +6367,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", @@ -6398,8 +6398,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", @@ -6418,8 +6418,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", @@ -6432,8 +6432,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", @@ -6513,8 +6513,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", @@ -6523,8 +6523,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", @@ -6542,8 +6542,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", @@ -6562,8 +6562,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", @@ -6573,8 +6573,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", @@ -6588,8 +6588,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", @@ -6601,8 +6601,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", @@ -6613,8 +6613,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", @@ -6639,8 +6639,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", @@ -6665,8 +6665,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", @@ -6693,8 +6693,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", @@ -6723,8 +6723,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", @@ -6738,8 +6738,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", @@ -6764,8 +6764,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", @@ -6788,8 +6788,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", @@ -6812,8 +6812,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", @@ -6847,8 +6847,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", @@ -6904,8 +6904,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", @@ -6935,8 +6935,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", @@ -6957,8 +6957,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", @@ -6982,8 +6982,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", @@ -7005,8 +7005,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", @@ -7059,8 +7059,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", @@ -7087,8 +7087,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", @@ -7103,8 +7103,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", @@ -7118,8 +7118,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", @@ -7140,8 +7140,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", @@ -7151,8 +7151,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", @@ -7180,8 +7180,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", @@ -7204,8 +7204,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", @@ -7244,8 +7244,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", @@ -7266,8 +7266,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", @@ -7282,8 +7282,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", @@ -7300,8 +7300,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", @@ -7314,8 +7314,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", @@ -7343,8 +7343,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", @@ -7363,8 +7363,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", @@ -7373,8 +7373,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", @@ -7396,8 +7396,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", @@ -7417,8 +7417,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", @@ -7430,8 +7430,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", @@ -7448,8 +7448,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", @@ -7486,8 +7486,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", @@ -7500,8 +7500,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", @@ -7510,8 +7510,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", @@ -7537,8 +7537,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", @@ -7557,8 +7557,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", @@ -7573,8 +7573,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", @@ -7582,8 +7582,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", @@ -7594,16 +7594,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", @@ -7616,8 +7616,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", @@ -7671,8 +7671,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", @@ -7696,8 +7696,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", @@ -7719,8 +7719,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", @@ -7734,8 +7734,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", @@ -7748,8 +7748,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", @@ -7765,8 +7765,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", @@ -7789,8 +7789,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", @@ -7857,8 +7857,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", @@ -7909,8 +7909,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", @@ -7947,8 +7947,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", @@ -7971,8 +7971,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", @@ -7995,8 +7995,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", @@ -8016,8 +8016,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", @@ -8028,8 +8028,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", @@ -8047,8 +8047,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", @@ -8068,8 +8068,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", @@ -8080,8 +8080,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", @@ -8100,8 +8100,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", @@ -8110,8 +8110,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", @@ -8123,8 +8123,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", @@ -8156,8 +8156,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", @@ -8201,8 +8201,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", @@ -8229,8 +8229,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", @@ -8238,14 +8238,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", @@ -8257,8 +8256,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", @@ -8336,8 +8335,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", @@ -8364,8 +8363,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", @@ -8403,8 +8402,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", @@ -8424,8 +8423,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", @@ -8454,8 +8453,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", @@ -8498,8 +8497,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", @@ -8545,8 +8544,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", @@ -8559,8 +8558,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", @@ -8575,8 +8574,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", @@ -8623,8 +8622,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", @@ -8650,8 +8649,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", @@ -8664,8 +8663,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", @@ -8684,8 +8683,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", @@ -8696,8 +8695,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", @@ -8719,8 +8718,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", @@ -8735,8 +8734,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", @@ -8753,8 +8752,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", @@ -8769,8 +8768,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", @@ -8779,8 +8778,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", @@ -8794,8 +8793,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", @@ -8808,8 +8807,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", @@ -8851,8 +8850,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", @@ -8876,8 +8875,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", @@ -8902,8 +8901,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", @@ -8915,8 +8914,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", @@ -8940,8 +8939,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", @@ -8959,8 +8958,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", @@ -8977,8 +8976,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 adfecd13eeade0918f890be966761bc5bc88ac5a 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 1688ddf..8bcdf71 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6343,8 +6343,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", @@ -6367,8 +6367,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", @@ -6398,8 +6398,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", @@ -6418,8 +6418,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", @@ -6432,8 +6432,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", @@ -6513,8 +6513,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", @@ -6523,8 +6523,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", @@ -6542,8 +6542,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", @@ -6562,8 +6562,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", @@ -6573,8 +6573,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", @@ -6588,8 +6588,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", @@ -6601,8 +6601,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", @@ -6613,8 +6613,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", @@ -6639,8 +6639,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", @@ -6665,8 +6665,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", @@ -6693,8 +6693,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", @@ -6723,8 +6723,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", @@ -6738,8 +6738,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", @@ -6764,8 +6764,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", @@ -6788,8 +6788,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", @@ -6812,8 +6812,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", @@ -6847,8 +6847,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", @@ -6904,8 +6904,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", @@ -6935,8 +6935,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", @@ -6957,8 +6957,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", @@ -6982,8 +6982,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", @@ -7005,8 +7005,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", @@ -7059,8 +7059,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", @@ -7087,8 +7087,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", @@ -7103,8 +7103,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", @@ -7118,8 +7118,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", @@ -7140,8 +7140,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", @@ -7151,8 +7151,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", @@ -7180,8 +7180,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", @@ -7204,8 +7204,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", @@ -7244,8 +7244,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", @@ -7266,8 +7266,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", @@ -7282,8 +7282,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", @@ -7300,8 +7300,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", @@ -7314,8 +7314,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", @@ -7343,8 +7343,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", @@ -7363,8 +7363,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", @@ -7373,8 +7373,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", @@ -7396,8 +7396,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", @@ -7417,8 +7417,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", @@ -7430,8 +7430,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", @@ -7448,8 +7448,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", @@ -7486,8 +7486,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", @@ -7500,8 +7500,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", @@ -7510,8 +7510,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", @@ -7537,8 +7537,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", @@ -7557,8 +7557,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", @@ -7573,8 +7573,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", @@ -7582,8 +7582,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", @@ -7594,16 +7594,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", @@ -7616,8 +7616,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", @@ -7671,8 +7671,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", @@ -7696,8 +7696,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", @@ -7719,8 +7719,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", @@ -7734,8 +7734,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", @@ -7748,8 +7748,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", @@ -7765,8 +7765,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", @@ -7789,8 +7789,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", @@ -7857,8 +7857,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", @@ -7909,8 +7909,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", @@ -7947,8 +7947,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", @@ -7971,8 +7971,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", @@ -7995,8 +7995,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", @@ -8016,8 +8016,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", @@ -8028,8 +8028,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", @@ -8047,8 +8047,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", @@ -8068,8 +8068,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", @@ -8080,8 +8080,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", @@ -8100,8 +8100,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", @@ -8110,8 +8110,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", @@ -8123,8 +8123,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", @@ -8156,8 +8156,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", @@ -8201,8 +8201,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", @@ -8229,8 +8229,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", @@ -8238,13 +8238,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", @@ -8256,8 +8257,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", @@ -8335,8 +8336,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", @@ -8363,8 +8364,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", @@ -8402,8 +8403,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", @@ -8423,8 +8424,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", @@ -8453,8 +8454,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", @@ -8497,8 +8498,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", @@ -8544,8 +8545,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", @@ -8558,8 +8559,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", @@ -8574,8 +8575,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", @@ -8622,8 +8623,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", @@ -8649,8 +8650,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", @@ -8663,8 +8664,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", @@ -8683,8 +8684,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", @@ -8695,8 +8696,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", @@ -8718,8 +8719,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", @@ -8734,8 +8735,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", @@ -8752,8 +8753,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", @@ -8768,8 +8769,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", @@ -8778,8 +8779,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", @@ -8793,8 +8794,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", @@ -8807,8 +8808,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", @@ -8850,8 +8851,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", @@ -8875,8 +8876,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", @@ -8901,8 +8902,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", @@ -8914,8 +8915,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", @@ -8939,8 +8940,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", @@ -8958,8 +8959,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", @@ -8976,8 +8977,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 }