fix(scroll-sepolia): drop dead RPC and Blockscout API endpoints - #244
Merged
YaroShkvorets merged 1 commit intoAug 11, 2026
Merged
Conversation
YaroShkvorets
approved these changes
Aug 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two endpoints in
registry/eip155/scroll-sepolia.jsonno longer exist. Reported by@yash251 (Edge & Node) as "Scroll Sepolia network disappeared", which turned out not to be
the case: the chain is fine and the registry entry is stale.
The chain is alive
The two remaining
rpcUrlsboth answer and agree, measured 2026-08-11:https://sepolia-rpc.scroll.io{"code":-32055,"message":"No nodes available"}https://scroll-sepolia.drpc.org0x1228645https://scroll-sepolia-public.nodies.app0x12286450x1228645is block 19,039,813, returned independently by both. Scroll Mainnet answerstoo, so this is not a Scroll-wide outage.
What this PR removes
https://sepolia-rpc.scroll.iofromrpcUrls. Scroll's own public endpoint resolvesand serves, and replies "No nodes available" — its gateway reporting that it has no
backends left for this network, rather than a timeout or a blip. It is currently listed
first, so anything that takes the first entry and trusts it concludes the network is gone.
https://scroll-sepolia.blockscout.com/apifromapiUrls. Returns a bare404 default backend. The mainnet siblingscroll.blockscout.comstill resolves, so theSepolia instance specifically has been retired.
sepolia-blockscout.scroll.ionowredirects to Scrollscan.
The remaining
https://scroll-sepolia.abi.thegraph.com/apiwas checked and behavesidentically to its mainnet counterpart, so the entry is not left without an API endpoint
and no new
has no API endpointswarning is introduced.Deliberately not changed
explorerUrlsstill listshttps://sepolia.scrollscan.com, which currently returns 403.That is worth a maintainer decision rather than a silent deletion, because Scrollscan is the
only explorer Scroll points at for this network.
Worth noting the 403 is not anti-bot noise. Etherscan-family sites block non-browser clients
routinely, so we ran the control: with an identical browser user-agent, mainnet
scrollscan.comreturns 200 whilesepolia.scrollscan.comstill returns 403. Same operator,same request shape, different answer. Whether that is deliberate deprecation or a
misconfiguration is a question for Scroll, who have been asked in both their Slack and their
Discord without reply so far.
Validation
bun validatepasses with zero errors. The 14 warnings are pre-existing and none concernscroll-sepolia.bun format:checkclean. No version bump, per AGENTS.md.Full investigation: nightswatchhq/graph-support#16