Skip to content
Open
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: 3 additions & 3 deletions src/lib/spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ const loadBenchmarkUnfilteredCached = unstable_cache(
// step grid the chart back-computes timestamps from.
// v28: bench vague 2 ships 081-085 (ws-head-latency, oracle-freshness,
// rpc-reliability, indexer-latency, evm-block-builders). Bench SET changed.
["bench-unfiltered-v29", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
["bench-unfiltered-v36", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
{ revalidate: 300, tags: ["benchmarks"] },
);

Expand Down Expand Up @@ -441,7 +441,7 @@ const loadAllBenchmarksCached = unstable_cache(
// v29: bumped with bench-unfiltered-v26 (monad-rpc + megaeth-rpc ship).
// v30: bumped with bench-unfiltered-v27 (dense series with nulls).
// v31: bumped with bench-unfiltered-v28 (bench vague 2, 081-085).
["all-benchmarks-v32", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
["all-benchmarks-v39", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
{ revalidate: 300, tags: ["benchmarks"] },
);
export const loadAllBenchmarks = cache(loadAllBenchmarksCached);
Expand Down Expand Up @@ -521,7 +521,7 @@ const loadBenchmarkFiltered = unstable_cache(
// v17: bumped with the monad-rpc + megaeth-rpc ship (lockstep rule).
// v18: bumped with bench-unfiltered-v27 (dense series with nulls).
// v19: bumped with bench-unfiltered-v28 (bench vague 2, 081-085).
["bench-filters-v20", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
["bench-filters-v27", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
{ revalidate: 300, tags: ["benchmarks"] }
);

Expand Down