From 51daf078cf6cf2387fc7b89645a0bffff3ce4077 Mon Sep 17 00:00:00 2001 From: Florent Tapponnier Date: Sun, 26 Jul 2026 07:40:46 +0200 Subject: [PATCH] gas bench: swap Avalanche verify RPC from api.avax.network to dRPC (finality lag caused verify_fetch_err on every block) --- harnesses/gas-estimation/cmd/script/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harnesses/gas-estimation/cmd/script/config.go b/harnesses/gas-estimation/cmd/script/config.go index 115586d0..bfc4ccda 100644 --- a/harnesses/gas-estimation/cmd/script/config.go +++ b/harnesses/gas-estimation/cmd/script/config.go @@ -110,7 +110,7 @@ func chains() []Chain { Slug: "avalanche", ChainID: 43114, RealizedRPC: envDefault("GAS_REALIZED_RPC_AVALANCHE", "https://avalanche-c-chain-rpc.publicnode.com"), - VerifyRPC: envDefault("GAS_REALIZED_RPC_VERIFY_AVALANCHE", "https://api.avax.network/ext/bc/C/rpc"), + VerifyRPC: envDefault("GAS_REALIZED_RPC_VERIFY_AVALANCHE", "https://avalanche.drpc.org"), OwlracleSlug: "avax", BlockTimeSec: 2, // Etherscan v2 returns "Free API access is not supported for this chain" on chainid=43114 — paid plan required.