diff --git a/CHANGELOG.sf.md b/CHANGELOG.sf.md index c141b8c953..39b7019429 100644 --- a/CHANGELOG.sf.md +++ b/CHANGELOG.sf.md @@ -10,8 +10,10 @@ ### Changed * Bumped base to `v1.2.0`. -* Kept `streamingfast/reth` at `tag = "v2.3.0-fh-5"` — upstream `v1.2.0` did not move off reth - `v2.3.0`, revm `40.0.3` or alloy-evm `0.36.0`, so no new Firehose reth release is required. +* Bumped `streamingfast/reth` dependencies from `tag = "v2.3.0-fh-5"` to `tag = "v2.3.0-fh-7"`. + Upstream `v1.2.0` did not move off reth `v2.3.0`, revm `40.0.3` or alloy-evm `0.36.0`; the two new + Firehose tags carry balance-change fixes only (see below), so the `Cargo.lock` diff is purely the + git tag/rev of the `streamingfast/reth` source. * Added `reth-eth-wire-types` to the `[patch."https://github.com/paradigmxyz/reth"]` table. Upstream `v1.2.0` began depending on it directly; without the patch entry it would resolve to a second copy from `paradigmxyz/reth` alongside the Firehose fork's copy. @@ -19,6 +21,15 @@ ### Fixed +* The SELFDESTRUCT refund is now included when resolving an account's post-transaction balance + (`streamingfast/reth` fh-7). revm credits the beneficiary in place and records the move only + inside its `AccountDestroyed` journal entry on the truly-destroyed path (EIP-6780), so a coinbase, + sender or fee vault that received a suicide refund reported a `RewardTransactionFee` / + `GasRefund` `old_balance` contradicting the `SuicideRefund` event emitted moments earlier. The + same resolver backs the OP fee-vault credits. +* Value-transfer balance changes are now emitted when a transaction sends value to a precompile and + then fails (`streamingfast/reth` fh-6); the reverted callee had its `BalanceTransfer` journal + entry truncated before the journal walk ran, dropping both balance changes. * Replaced the stale `base-firehose-tests` `nop_transfer` full-protobuf golden with a JSON projection plus property invariants. The full-block golden recorded `gas_limit: 30000000` for the EIP-4788 beacon-roots system call while the current tracer reports `31566720`; the projection diff --git a/Cargo.lock b/Cargo.lock index 5e8a67f9c1..11caab5802 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16452,7 +16452,7 @@ checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" [[package]] name = "reth-basic-payload-builder" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -16479,7 +16479,7 @@ dependencies = [ [[package]] name = "reth-chain-state" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -16512,7 +16512,7 @@ dependencies = [ [[package]] name = "reth-chainspec" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-chains", "alloy-consensus 2.0.5", @@ -16532,7 +16532,7 @@ dependencies = [ [[package]] name = "reth-cli" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-genesis 2.0.5", "clap", @@ -16545,7 +16545,7 @@ dependencies = [ [[package]] name = "reth-cli-commands" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-chains", "alloy-consensus 2.0.5", @@ -16633,7 +16633,7 @@ dependencies = [ [[package]] name = "reth-cli-runner" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "reth-tasks", "tokio", @@ -16643,7 +16643,7 @@ dependencies = [ [[package]] name = "reth-cli-util" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eips 2.0.5", "alloy-primitives", @@ -16694,7 +16694,7 @@ dependencies = [ [[package]] name = "reth-config" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "eyre", "humantime-serde", @@ -16710,7 +16710,7 @@ dependencies = [ [[package]] name = "reth-consensus" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eip7928 0.4.2", @@ -16724,7 +16724,7 @@ dependencies = [ [[package]] name = "reth-consensus-common" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -16737,7 +16737,7 @@ dependencies = [ [[package]] name = "reth-consensus-debug-client" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -16762,7 +16762,7 @@ dependencies = [ [[package]] name = "reth-db" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "derive_more 2.1.1", @@ -16791,7 +16791,7 @@ dependencies = [ [[package]] name = "reth-db-api" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-primitives", @@ -16817,7 +16817,7 @@ dependencies = [ [[package]] name = "reth-db-common" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-genesis 2.0.5", @@ -16847,7 +16847,7 @@ dependencies = [ [[package]] name = "reth-db-models" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eips 2.0.5", "alloy-primitives", @@ -16862,7 +16862,7 @@ dependencies = [ [[package]] name = "reth-discv4" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -16887,7 +16887,7 @@ dependencies = [ [[package]] name = "reth-discv5" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -16911,7 +16911,7 @@ dependencies = [ [[package]] name = "reth-dns-discovery" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "dashmap", @@ -16935,7 +16935,7 @@ dependencies = [ [[package]] name = "reth-downloaders" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -16970,7 +16970,7 @@ dependencies = [ [[package]] name = "reth-e2e-test-utils" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -17027,7 +17027,7 @@ dependencies = [ [[package]] name = "reth-ecies" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "aes", "alloy-primitives", @@ -17055,7 +17055,7 @@ dependencies = [ [[package]] name = "reth-engine-local" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-primitives", @@ -17078,7 +17078,7 @@ dependencies = [ [[package]] name = "reth-engine-primitives" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -17103,7 +17103,7 @@ dependencies = [ [[package]] name = "reth-engine-tree" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eip7928 0.4.2", @@ -17162,7 +17162,7 @@ dependencies = [ [[package]] name = "reth-engine-util" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-primitives", @@ -17192,7 +17192,7 @@ dependencies = [ [[package]] name = "reth-era" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -17208,7 +17208,7 @@ dependencies = [ [[package]] name = "reth-era-downloader" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "bytes", @@ -17224,7 +17224,7 @@ dependencies = [ [[package]] name = "reth-era-utils" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-primitives", @@ -17246,7 +17246,7 @@ dependencies = [ [[package]] name = "reth-errors" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "reth-consensus", "reth-execution-errors", @@ -17257,7 +17257,7 @@ dependencies = [ [[package]] name = "reth-eth-wire" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-chains", "alloy-primitives", @@ -17286,7 +17286,7 @@ dependencies = [ [[package]] name = "reth-eth-wire-types" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-chains", "alloy-consensus 2.0.5", @@ -17311,7 +17311,7 @@ dependencies = [ [[package]] name = "reth-ethereum-consensus" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -17327,7 +17327,7 @@ dependencies = [ [[package]] name = "reth-ethereum-engine-primitives" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eips 2.0.5", "alloy-primitives", @@ -17343,7 +17343,7 @@ dependencies = [ [[package]] name = "reth-ethereum-forks" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eip2124", "alloy-hardforks 0.4.7", @@ -17357,7 +17357,7 @@ dependencies = [ [[package]] name = "reth-ethereum-payload-builder" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -17387,7 +17387,7 @@ dependencies = [ [[package]] name = "reth-ethereum-primitives" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -17401,7 +17401,7 @@ dependencies = [ [[package]] name = "reth-etl" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "rayon", "reth-db-api", @@ -17411,7 +17411,7 @@ dependencies = [ [[package]] name = "reth-evm" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eip7928 0.4.2", @@ -17436,7 +17436,7 @@ dependencies = [ [[package]] name = "reth-evm-ethereum" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -17456,7 +17456,7 @@ dependencies = [ [[package]] name = "reth-execution-cache" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "fixed-cache", @@ -17474,7 +17474,7 @@ dependencies = [ [[package]] name = "reth-execution-errors" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-evm", "alloy-primitives", @@ -17487,7 +17487,7 @@ dependencies = [ [[package]] name = "reth-execution-types" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -17506,7 +17506,7 @@ dependencies = [ [[package]] name = "reth-exex" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -17544,7 +17544,7 @@ dependencies = [ [[package]] name = "reth-exex-test-utils" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eips 2.0.5", "eyre", @@ -17576,7 +17576,7 @@ dependencies = [ [[package]] name = "reth-exex-types" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eips 2.0.5", "alloy-primitives", @@ -17590,7 +17590,7 @@ dependencies = [ [[package]] name = "reth-firehose" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eip7928 0.4.2", @@ -17618,7 +17618,7 @@ dependencies = [ [[package]] name = "reth-firehose-tests" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -17645,7 +17645,7 @@ dependencies = [ [[package]] name = "reth-fs-util" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "serde", "serde_json", @@ -17655,7 +17655,7 @@ dependencies = [ [[package]] name = "reth-invalid-block-hooks" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-primitives", @@ -17683,7 +17683,7 @@ dependencies = [ [[package]] name = "reth-ipc" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "bytes", "futures", @@ -17703,7 +17703,7 @@ dependencies = [ [[package]] name = "reth-libmdbx" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "bitflags 2.13.0", "byteorder", @@ -17720,7 +17720,7 @@ dependencies = [ [[package]] name = "reth-mdbx-sys" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "bindgen 0.72.1", "cc", @@ -17729,7 +17729,7 @@ dependencies = [ [[package]] name = "reth-metrics" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "futures", "metrics", @@ -17742,7 +17742,7 @@ dependencies = [ [[package]] name = "reth-net-banlist" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "ipnet", @@ -17751,7 +17751,7 @@ dependencies = [ [[package]] name = "reth-net-nat" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "futures-util", "if-addrs 0.14.0", @@ -17765,7 +17765,7 @@ dependencies = [ [[package]] name = "reth-network" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -17823,7 +17823,7 @@ dependencies = [ [[package]] name = "reth-network-api" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-primitives", @@ -17848,7 +17848,7 @@ dependencies = [ [[package]] name = "reth-network-p2p" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -17871,7 +17871,7 @@ dependencies = [ [[package]] name = "reth-network-peers" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -17886,7 +17886,7 @@ dependencies = [ [[package]] name = "reth-network-types" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eip2124", "humantime-serde", @@ -17900,7 +17900,7 @@ dependencies = [ [[package]] name = "reth-nippy-jar" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "anyhow", "bincode 1.3.3", @@ -17917,7 +17917,7 @@ dependencies = [ [[package]] name = "reth-node-api" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-rpc-types-engine", "eyre", @@ -17941,7 +17941,7 @@ dependencies = [ [[package]] name = "reth-node-builder" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -18010,7 +18010,7 @@ dependencies = [ [[package]] name = "reth-node-core" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -18065,7 +18065,7 @@ dependencies = [ [[package]] name = "reth-node-ethereum" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -18112,7 +18112,7 @@ dependencies = [ [[package]] name = "reth-node-ethstats" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-primitives", @@ -18136,7 +18136,7 @@ dependencies = [ [[package]] name = "reth-node-events" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -18160,7 +18160,7 @@ dependencies = [ [[package]] name = "reth-node-metrics" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "bytes", "eyre", @@ -18189,7 +18189,7 @@ dependencies = [ [[package]] name = "reth-node-types" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "reth-chainspec", "reth-db-api", @@ -18201,7 +18201,7 @@ dependencies = [ [[package]] name = "reth-payload-builder" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-primitives", @@ -18225,7 +18225,7 @@ dependencies = [ [[package]] name = "reth-payload-builder-primitives" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "pin-project", "reth-payload-primitives", @@ -18237,7 +18237,7 @@ dependencies = [ [[package]] name = "reth-payload-primitives" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -18260,7 +18260,7 @@ dependencies = [ [[package]] name = "reth-payload-util" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-primitives", @@ -18270,7 +18270,7 @@ dependencies = [ [[package]] name = "reth-payload-validator" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-rpc-types-engine", @@ -18313,7 +18313,7 @@ dependencies = [ [[package]] name = "reth-provider" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eip7928 0.4.2", @@ -18362,7 +18362,7 @@ dependencies = [ [[package]] name = "reth-prune" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-primitives", @@ -18390,7 +18390,7 @@ dependencies = [ [[package]] name = "reth-prune-types" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "arbitrary", @@ -18406,7 +18406,7 @@ dependencies = [ [[package]] name = "reth-revm" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -18421,7 +18421,7 @@ dependencies = [ [[package]] name = "reth-rpc" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-dyn-abi", @@ -18497,7 +18497,7 @@ dependencies = [ [[package]] name = "reth-rpc-api" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eips 2.0.5", "alloy-genesis 2.0.5", @@ -18527,7 +18527,7 @@ dependencies = [ [[package]] name = "reth-rpc-builder" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-network 2.0.5", "alloy-provider 2.0.5", @@ -18570,7 +18570,7 @@ dependencies = [ [[package]] name = "reth-rpc-convert" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-evm", @@ -18590,7 +18590,7 @@ dependencies = [ [[package]] name = "reth-rpc-engine-api" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eips 2.0.5", "alloy-primitives", @@ -18621,7 +18621,7 @@ dependencies = [ [[package]] name = "reth-rpc-eth-api" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-dyn-abi", @@ -18668,7 +18668,7 @@ dependencies = [ [[package]] name = "reth-rpc-eth-types" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-chains", "alloy-consensus 2.0.5", @@ -18719,7 +18719,7 @@ dependencies = [ [[package]] name = "reth-rpc-layer" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-rpc-types-engine", "http 1.4.2", @@ -18733,7 +18733,7 @@ dependencies = [ [[package]] name = "reth-rpc-server-types" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eips 2.0.5", "alloy-primitives", @@ -18764,7 +18764,7 @@ dependencies = [ [[package]] name = "reth-stages" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-primitives", @@ -18815,7 +18815,7 @@ dependencies = [ [[package]] name = "reth-stages-api" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eips 2.0.5", "alloy-primitives", @@ -18843,7 +18843,7 @@ dependencies = [ [[package]] name = "reth-stages-types" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "arbitrary", @@ -18857,7 +18857,7 @@ dependencies = [ [[package]] name = "reth-static-file" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "parking_lot", @@ -18877,7 +18877,7 @@ dependencies = [ [[package]] name = "reth-static-file-types" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "clap", @@ -18892,7 +18892,7 @@ dependencies = [ [[package]] name = "reth-storage-api" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eip7928 0.4.2", @@ -18918,7 +18918,7 @@ dependencies = [ [[package]] name = "reth-storage-errors" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eips 2.0.5", "alloy-primitives", @@ -18936,7 +18936,7 @@ dependencies = [ [[package]] name = "reth-tasks" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "crossbeam-utils", "dashmap", @@ -18957,7 +18957,7 @@ dependencies = [ [[package]] name = "reth-testing-utils" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -18973,7 +18973,7 @@ dependencies = [ [[package]] name = "reth-tokio-util" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "tokio", "tokio-stream", @@ -18983,7 +18983,7 @@ dependencies = [ [[package]] name = "reth-tracing" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "clap", "eyre", @@ -19003,7 +19003,7 @@ dependencies = [ [[package]] name = "reth-tracing-otlp" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "base64 0.22.1", "clap", @@ -19022,7 +19022,7 @@ dependencies = [ [[package]] name = "reth-transaction-pool" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -19067,7 +19067,7 @@ dependencies = [ [[package]] name = "reth-trie" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-eips 2.0.5", @@ -19093,7 +19093,7 @@ dependencies = [ [[package]] name = "reth-trie-common" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-consensus 2.0.5", "alloy-primitives", @@ -19120,7 +19120,7 @@ dependencies = [ [[package]] name = "reth-trie-db" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "metrics", @@ -19140,7 +19140,7 @@ dependencies = [ [[package]] name = "reth-trie-parallel" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-eip7928 0.4.2", "alloy-evm", @@ -19168,7 +19168,7 @@ dependencies = [ [[package]] name = "reth-trie-sparse" version = "2.3.0" -source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-5#262ae6bbd4022cb3599b408d3e2429694ff7d882" +source = "git+https://github.com/streamingfast/reth.git?tag=v2.3.0-fh-7#b069ebb394ed4e438d62fee3fb12cfe9bf9fb82c" dependencies = [ "alloy-primitives", "alloy-rlp", diff --git a/Cargo.toml b/Cargo.toml index f06fc33ba0..847df8ee7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -648,8 +648,8 @@ unsigned-varint = { version = "0.8", default-features = false } ark-bls12-381 = { version = "0.5.0", default-features = false } # Firehose tracer (defined by the streamingfast reth fork, firehose/2.x branch). -reth-firehose = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-firehose-tests = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } +reth-firehose = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-firehose-tests = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } firehose-tracer = "5.3.0" # Shared tracing-regression framework (capture / invariants / projection / golden). @@ -714,72 +714,72 @@ slop-maybe-rayon = { git = "https://github.com/succinctlabs/sp1.git", tag = "v6. slop-basefold-prover = { git = "https://github.com/succinctlabs/sp1.git", tag = "v6.1.0" } [patch."https://github.com/paradigmxyz/reth"] -reth-db = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-cli = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-ipc = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-evm = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-rpc = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-revm = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-trie = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-exex = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-tasks = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-errors = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-db-api = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-discv4 = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-discv5 = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-metrics = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-trie-db = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-rpc-api = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-network = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-net-nat = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-tracing = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-provider = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-cli-util = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-node-api = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-db-common = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-db-models = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-rpc-layer = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-node-core = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-consensus = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-chainspec = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-cli-runner = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-tokio-util = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-rpc-convert = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-rpc-builder = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-network-p2p = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-storage-api = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-rpc-eth-api = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-engine-tree = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-chain-state = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-trie-common = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-payload-util = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-node-builder = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-node-metrics = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-cli-commands = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-evm-ethereum = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-tracing-otlp = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-testing-utils = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-rpc-eth-types = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-trie-parallel = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-network-peers = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-node-ethereum = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-rpc-engine-api = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-e2e-test-utils = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-eth-wire-types = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-payload-builder = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-execution-types = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-exex-test-utils = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-rpc-server-types = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-transaction-pool = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-execution-errors = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-payload-validator = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-engine-primitives = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-payload-primitives = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-ethereum-primitives = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-basic-payload-builder = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-payload-builder-primitives = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-prune-types = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-stages-types = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-storage-errors = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-ethereum-forks = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } -reth-consensus-common = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-5" } +reth-db = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-cli = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-ipc = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-evm = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-rpc = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-revm = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-trie = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-exex = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-tasks = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-errors = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-db-api = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-discv4 = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-discv5 = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-metrics = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-trie-db = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-rpc-api = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-network = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-net-nat = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-tracing = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-provider = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-cli-util = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-node-api = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-db-common = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-db-models = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-rpc-layer = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-node-core = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-consensus = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-chainspec = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-cli-runner = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-tokio-util = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-rpc-convert = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-rpc-builder = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-network-p2p = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-storage-api = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-rpc-eth-api = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-engine-tree = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-chain-state = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-trie-common = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-payload-util = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-node-builder = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-node-metrics = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-cli-commands = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-evm-ethereum = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-tracing-otlp = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-testing-utils = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-rpc-eth-types = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-trie-parallel = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-network-peers = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-node-ethereum = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-rpc-engine-api = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-e2e-test-utils = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-eth-wire-types = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-payload-builder = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-execution-types = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-exex-test-utils = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-rpc-server-types = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-transaction-pool = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-execution-errors = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-payload-validator = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-engine-primitives = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-payload-primitives = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-ethereum-primitives = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-basic-payload-builder = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-payload-builder-primitives = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-prune-types = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-stages-types = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-storage-errors = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-ethereum-forks = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" } +reth-consensus-common = { git = "https://github.com/streamingfast/reth.git", tag = "v2.3.0-fh-7" }