Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/lib/rpc-hub-stats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,11 @@ const fetchRpcHubCached = unstable_cache(
// v3: pivot rows gained medianSuccessPct/errors24h + per-chain
// successPct/sampleSize; chains gained unresponsive[] rows.
// v2: chains gained unresponsiveCount (unresponsive provider rows).
["rpc-hub-cohort-v4", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
// v5: purge sticky-null cache for /chains/<slug> RPC section (2026-07-24).
// Snapshot has all 44 chains + best=YES, but ChainRpcSection was returning
// null on every /chains/<slug> render (Fastest public RPC on <chain> text
// missing prod-wide). Bump busts the stuck v4 entry.
["rpc-hub-cohort-v5", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
{ revalidate: 60, tags: ["rpc-cohort"] },
);

Expand Down
Loading