From 2bd541a5d3453dad6a52a3a54b3b657d23d580f8 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Tue, 10 Feb 2026 09:49:12 +0000 Subject: [PATCH 1/3] chore: remove base.reth.rs public endpoint references The base.reth.rs public endpoint is being decommissioned. Amp-Thread-ID: https://ampcode.com/threads/T-019c46f2-ef65-755a-99cd-635cae572dac Co-authored-by: Amp --- bin/reth-bench-compare/src/cli.rs | 1 - docs/vocs/docs/pages/run/overview.mdx | 1 - 2 files changed, 2 deletions(-) diff --git a/bin/reth-bench-compare/src/cli.rs b/bin/reth-bench-compare/src/cli.rs index e543234181c..e839ed97f8b 100644 --- a/bin/reth-bench-compare/src/cli.rs +++ b/bin/reth-bench-compare/src/cli.rs @@ -277,7 +277,6 @@ impl Args { /// Get the default RPC URL for a given chain const fn get_default_rpc_url(chain: &Chain) -> &'static str { match chain.id() { - 8453 => "https://base.reth.rs/rpc", // base 84532 => "https://base-sepolia.rpc.ithaca.xyz", // base-sepolia 27082 => "https://rpc.hoodi.ethpandaops.io", // hoodi _ => "https://ethereum.reth.rs/rpc", // mainnet and fallback diff --git a/docs/vocs/docs/pages/run/overview.mdx b/docs/vocs/docs/pages/run/overview.mdx index 6ca1951ffcc..246ceb5bb43 100644 --- a/docs/vocs/docs/pages/run/overview.mdx +++ b/docs/vocs/docs/pages/run/overview.mdx @@ -38,7 +38,6 @@ Find answers to common questions and troubleshooting tips: | --------------- | -------- | ------------------------------------ | | Ethereum | 1 | https://ethereum.reth.rs/rpc | | Sepolia Testnet | 11155111 | https://sepolia.drpc.org | -| Base | 8453 | https://base.reth.rs/rpc | | Base Sepolia | 84532 | https://base-sepolia.drpc.org | :::tip From c41452beeb88664dd1736109189eecea42a889a2 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Tue, 10 Feb 2026 09:53:51 +0000 Subject: [PATCH 2/3] chore: also remove Base Sepolia entries Amp-Thread-ID: https://ampcode.com/threads/T-019c46f2-ef65-755a-99cd-635cae572dac Co-authored-by: Amp --- bin/reth-bench-compare/src/cli.rs | 1 - docs/vocs/docs/pages/run/overview.mdx | 1 - 2 files changed, 2 deletions(-) diff --git a/bin/reth-bench-compare/src/cli.rs b/bin/reth-bench-compare/src/cli.rs index e839ed97f8b..53d4b19c942 100644 --- a/bin/reth-bench-compare/src/cli.rs +++ b/bin/reth-bench-compare/src/cli.rs @@ -277,7 +277,6 @@ impl Args { /// Get the default RPC URL for a given chain const fn get_default_rpc_url(chain: &Chain) -> &'static str { match chain.id() { - 84532 => "https://base-sepolia.rpc.ithaca.xyz", // base-sepolia 27082 => "https://rpc.hoodi.ethpandaops.io", // hoodi _ => "https://ethereum.reth.rs/rpc", // mainnet and fallback } diff --git a/docs/vocs/docs/pages/run/overview.mdx b/docs/vocs/docs/pages/run/overview.mdx index 246ceb5bb43..5a9439cbf44 100644 --- a/docs/vocs/docs/pages/run/overview.mdx +++ b/docs/vocs/docs/pages/run/overview.mdx @@ -38,7 +38,6 @@ Find answers to common questions and troubleshooting tips: | --------------- | -------- | ------------------------------------ | | Ethereum | 1 | https://ethereum.reth.rs/rpc | | Sepolia Testnet | 11155111 | https://sepolia.drpc.org | -| Base Sepolia | 84532 | https://base-sepolia.drpc.org | :::tip Want to add more networks to this table? Feel free to [contribute](https://github.com/paradigmxyz/reth/edit/main/docs/vocs/docs/pages/run/overview.mdx) by submitting a PR with additional networks that Reth supports! From 3ca2aae6deb90646c039a5ea7526a7fd99ef532f Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Tue, 10 Feb 2026 14:11:14 +0000 Subject: [PATCH 3/3] chore: fix fmt Amp-Thread-ID: https://ampcode.com/threads/T-019c47e3-b58a-749c-a1d3-e96824c2aec3 Co-authored-by: Amp --- bin/reth-bench-compare/src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/reth-bench-compare/src/cli.rs b/bin/reth-bench-compare/src/cli.rs index 53d4b19c942..2b1d79cbde9 100644 --- a/bin/reth-bench-compare/src/cli.rs +++ b/bin/reth-bench-compare/src/cli.rs @@ -277,8 +277,8 @@ impl Args { /// Get the default RPC URL for a given chain const fn get_default_rpc_url(chain: &Chain) -> &'static str { match chain.id() { - 27082 => "https://rpc.hoodi.ethpandaops.io", // hoodi - _ => "https://ethereum.reth.rs/rpc", // mainnet and fallback + 27082 => "https://rpc.hoodi.ethpandaops.io", // hoodi + _ => "https://ethereum.reth.rs/rpc", // mainnet and fallback } }