fix: repair broken RPC providers links on Network Information page#2205
Merged
Conversation
The "List of RPC providers" link pointed to network/node/overview#as-a-service without a leading slash, so Mintlify resolved it relative to the current page and fell back to a 404. Repoint to the canonical /tooling/nodes/overview#as-a-service. - Mainnet table: fix the link and drop the stale /developer#node-and-rpc-providers item (anchor no longer exists). - Celo Sepolia Testnet table: add an RPC Nodes row linking to the same providers list (previously only had the direct Forno endpoint). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
palango
approved these changes
Jun 24, 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.
Problem
The "List of RPC providers" link on
docs.celo.org/build-on-celo/network-overviewwas landing on a Mintlify fallback page. The providers list was never removed — it still lives on the "Nodes and Services" page (/tooling/nodes/overview) under the "As a Service" section, which lists ~15 providers (Alchemy, Ankr, dRPC, Infura, QuickNode, thirdweb, All That Node, GetBlock, etc.).The link simply had a bad path: it was written as
network/node/overview#as-a-servicewithout a leading slash, so Mintlify resolved it relative to the current page as/build-on-celo/network/node/overview(which doesn't exist) and fell back.Changes
In
build-on-celo/network-overview.mdx:List of RPC providersto the canonical absolute path/tooling/nodes/overview#as-a-service, and remove the stale second item (/developer#node-and-rpc-providers) whose anchor no longer exists.RPC Nodesrow linking to the same providers list — it previously had no providers link at all, only the direct Forno endpoint. Many listed providers support Celo Sepolia.Verification
Run the docs locally (
mint dev), open/build-on-celo/network-overview, and click "List of RPC providers" in both the Mainnet and Sepolia tables — each should scroll to the As a Service section instead of the fallback page.🤖 Generated with Claude Code