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
5 changes: 3 additions & 2 deletions src/lib/spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,8 @@ const loadBenchmarkUnfilteredCached = unstable_cache(
// v55: add ws-head-latency-robinhood (244) + keyed-rpc-robinhood (243). Bench SET grew.
// v56: drop 6 keyed-rpc benches (arbitrum/base/bnb/eth/polygon/solana), US-only robinhood.
// v57: drop rpc-keyed-latency bench.
["bench-unfiltered-v62", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
// v63: score_scope contested_chains on bench 008 changes its provider values.
["bench-unfiltered-v63", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
{ revalidate: 300, tags: ["benchmarks"] },
);

Expand Down Expand Up @@ -604,7 +605,7 @@ const loadAllBenchmarksCached = unstable_cache(
// v52: token-quote-coverage flipped draft→live (see bench-unfiltered-v49).
// v53: lockstep with bench-unfiltered-v53 (Flashbots prune).
// v57: lockstep with bench-unfiltered-v54 (add 6 new chain benches 216-221).
["all-benchmarks-v57", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
["all-benchmarks-v58", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
{ revalidate: 300, tags: ["benchmarks"] },
);
export const loadAllBenchmarks = cache(loadAllBenchmarksCached);
Expand Down
Loading