Skip to content

fix: mobile overflow on benchmark detail pages - #236

Merged
Flotapponnier merged 1 commit into
devfrom
fix/mobile-overflow-benchmark-detail
Jun 1, 2026
Merged

fix: mobile overflow on benchmark detail pages#236
Flotapponnier merged 1 commit into
devfrom
fix/mobile-overflow-benchmark-detail

Conversation

@Flotapponnier

Copy link
Copy Markdown
Collaborator

Problem

Sur iPhone (375-414px), les pages /benchmarks/[slug] avaient tout le contenu qui sortait du viewport à droite : breadcrumb, titre, paragraphe, et la ligne LEADER/RANGE/GAP. Cause racine : plusieurs composants forcent une largeur minimum en px supérieure au viewport.

Fixes (par cause racine, pas en band-aid)

Fichier Avant Après
ledger-table.tsx:59 min-w-[480px] md:min-w-0 min-w-full sm:min-w-[480px] md:min-w-0
region-grid.tsx:41 min-w-[520px] min-w-full sm:min-w-[520px]
count-leaderboard.tsx:52 grid-cols-2 gap-x-8 grid-cols-1 sm:flex gap-x-3 sm:gap-x-8
count-leaderboard CountStat pas de min-w-0 min-w-0 + truncate pour la dd
summary-stat.tsx:27 min-w-[8rem] min-w-0 sm:min-w-[8rem]
page.tsx breadcrumb tracking-[0.16em] tracking-[0.08em] sm:tracking-[0.16em] + truncate max-w-[60vw] sur le dernier crumb
page.tsx bench identifier tracking-[0.18em] tracking-[0.1em] sm:tracking-[0.18em]
page.tsx h1 + subtitle pas de break-words break-words ajouté
globals.css rien html { overflow-x: clip } en dernier filet de sécurité

overflow-x: clip sur html (pas hidden) ne crée pas de scroll container, donc le position: sticky du header continue de marcher. C'est le filet, pas la solution : les vrais fix sont les min-w responsive.

Test plan

  • iPhone Safari + Telegram sur /benchmarks/onchain-data-most-networks
  • Vérifier breadcrumb, titre, subtitle, body, LEADER strip et ledger : aucun overflow
  • Desktop (>=768px) : aucun changement visuel

- Tables (ledger, region-grid): min-w only applies from sm: so mobile
  shrinks the table inside its overflow-x-auto wrapper instead of
  forcing 480/520px and pushing the whole page past the viewport edge
- count-leaderboard summary strip stacks 1-col on mobile, reduces
  gap-x so 'RANGE 40 → 306 7 providers' no longer cuts off
- summary-stat removes the 8rem min-width on mobile flex children
- breadcrumb + bench identifier lower tracking on mobile, last crumb
  truncates at 60vw so long titles can't push the row off-screen
- Title + subtitle get break-words as safety net
- html { overflow-x: clip } as a final root-level safety net
@Flotapponnier
Flotapponnier merged commit bd84de3 into dev Jun 1, 2026
1 check failed
Flotapponnier added a commit that referenced this pull request Aug 27, 2026
feat(zcash): bench #236 Tatum zcashd + Tatum Zebra + Blockchair
Flotapponnier added a commit that referenced this pull request Aug 27, 2026
* feat: fee-compare tool — Hyperliquid vs Gains wallet analysis (#2054)

* feat: HL vs Gains wallet fee comparison tool

* feat: HL vs Gains wallet fee comparison

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* fix: fetch Gains fee rates live, drop hardcoded rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* feat: fee-compare per-trade breakdown + live Gains rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings (#2046)

* perf: reduce Vercel invocations - live-prices 1s->5s CDN TTL, alternatives+perp ISR 300s

* fix: double-counted notional in HL vs Gains comparison (#2048)

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings

* fix: double-counted notional in HL vs Gains comparison — use per-side rate

* fix: rename Gains.trade -> Gains, HL -> Hyperliquid in UI (#2049)

* feat: always show Gains simulated, bold winner, pro design (#2051)

* fix: mobile responsive — stack VS card vertically, hide overflow columns (#2052)

* fix: symmetric HL/Gains display + winner logic for single-platform wallets (#2053)

* fix: mobile table Gains fee column always visible, symmetric panels (#2057)

* fix: revalidate hl-cohort + hl-history on aggregate purge (#2069)

* fix(app-store-ratings): last_over_time[31m] on reviews panel for 7d+ staleness (#2073)

* fix: sitemap 90s timeout — maxDuration=60 + tighten internal deadline to 20s

* fix: suppress orphaned buildFullSitemap rejection + guard unhandled getProvider throws

* feat(rpc): add Dogecoin bench #235 (Tatum, dRPC, BlockCypher)

* fix(dogecoin-rpc): remove em-dash from seo_intro

* fix(dogecoin-rpc): em-dash in seo_intro

* fix: sitemap aggregate timeout + CDN caching (#2090) (#2092)

* feat: shareable wallet URLs + HL fee/funding breakdown

- /fee-compare/[venueA]/[venueB]/[wallet] dynamic route auto-submits on load
- pushState updates URL after analyze so any comparison is shareable
- FeeCompareClient accepts initialVenueA/B/Wallet/Days props
- HL wallet side: replace 2-cell grid with inline fee/funding/net breakdown

* fix: remove 'No activity found' text from crossSim projection side

* fix: sitemap aggregate timeout + CDN caching (s-maxage stripped by dynamic route)

* fix: raise maxDuration to 300s and extend sitemap JS timeout to 240s

SIGKILL (signal 9) was killing the function at 60s. The aggregate blob
(4.25MB) exceeds Next.js Data Cache's 2MB cap, so unstable_cache never
caches it and every request re-fetches from /api/aggregate (FETCH_TIMEOUT_MS
= 65s > maxDuration = 60s). SIGKILL discards the buffered response -> 500.

- maxDuration 60 -> 300: gives full build time on cold starts
- JS timeout 55s -> 240s: allows aggregate fetch + HL-builder Prometheus
  sweeps to finish before falling back to the static sitemap

* feat(zcash): add bench #236 with Tatum zcashd, Tatum Zebra, Blockchair

* fix: include pre-window HL positions in carry projection
Flotapponnier added a commit that referenced this pull request Aug 27, 2026
* feat: fee-compare tool — Hyperliquid vs Gains wallet analysis (#2054)

* feat: HL vs Gains wallet fee comparison tool

* feat: HL vs Gains wallet fee comparison

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* fix: fetch Gains fee rates live, drop hardcoded rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* feat: fee-compare per-trade breakdown + live Gains rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings (#2046)

* perf: reduce Vercel invocations - live-prices 1s->5s CDN TTL, alternatives+perp ISR 300s

* fix: double-counted notional in HL vs Gains comparison (#2048)

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings

* fix: double-counted notional in HL vs Gains comparison — use per-side rate

* fix: rename Gains.trade -> Gains, HL -> Hyperliquid in UI (#2049)

* feat: always show Gains simulated, bold winner, pro design (#2051)

* fix: mobile responsive — stack VS card vertically, hide overflow columns (#2052)

* fix: symmetric HL/Gains display + winner logic for single-platform wallets (#2053)

* fix: mobile table Gains fee column always visible, symmetric panels (#2057)

* fix: revalidate hl-cohort + hl-history on aggregate purge (#2069)

* fix(app-store-ratings): last_over_time[31m] on reviews panel for 7d+ staleness (#2073)

* fix: sitemap 90s timeout — maxDuration=60 + tighten internal deadline to 20s

* fix: suppress orphaned buildFullSitemap rejection + guard unhandled getProvider throws

* feat(rpc): add Dogecoin bench #235 (Tatum, dRPC, BlockCypher)

* fix(dogecoin-rpc): remove em-dash from seo_intro

* fix(dogecoin-rpc): em-dash in seo_intro

* fix: sitemap aggregate timeout + CDN caching (#2090) (#2092)

* feat: shareable wallet URLs + HL fee/funding breakdown

- /fee-compare/[venueA]/[venueB]/[wallet] dynamic route auto-submits on load
- pushState updates URL after analyze so any comparison is shareable
- FeeCompareClient accepts initialVenueA/B/Wallet/Days props
- HL wallet side: replace 2-cell grid with inline fee/funding/net breakdown

* fix: remove 'No activity found' text from crossSim projection side

* fix: sitemap aggregate timeout + CDN caching (s-maxage stripped by dynamic route)

* fix: raise maxDuration to 300s and extend sitemap JS timeout to 240s

SIGKILL (signal 9) was killing the function at 60s. The aggregate blob
(4.25MB) exceeds Next.js Data Cache's 2MB cap, so unstable_cache never
caches it and every request re-fetches from /api/aggregate (FETCH_TIMEOUT_MS
= 65s > maxDuration = 60s). SIGKILL discards the buffered response -> 500.

- maxDuration 60 -> 300: gives full build time on cold starts
- JS timeout 55s -> 240s: allows aggregate fetch + HL-builder Prometheus
  sweeps to finish before falling back to the static sitemap

* feat(zcash): add bench #236 with Tatum zcashd, Tatum Zebra, Blockchair

* fix: sitemap JS timeout 240s -> 75s so smoke gate (<90s) can receive response

JS timeout was 240s which exceeds the smoke script's 90s per-attempt window
(scripts/sitemap-smoke.mjs getTextWithRetry). Every smoke attempt would abort
at 90s before the function returned, causing 3-retry failure and auto-rollback.

75s: aggregate FETCH_TIMEOUT_MS is 65s, so cold-cache fallback fires at ~75s,
returns static sitemap at ~76s — within the 90s smoke window. maxDuration=300s
means the process exits cleanly at ~76s with no SIGKILL.

* feat: add dYdX + Paradex carry projection for all HL/Gains crossSims

* fix: filter Paradex to perp markets only in carry rate fetch
Flotapponnier added a commit that referenced this pull request Aug 27, 2026
* feat: fee-compare tool — Hyperliquid vs Gains wallet analysis (#2054)

* feat: HL vs Gains wallet fee comparison tool

* feat: HL vs Gains wallet fee comparison

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* fix: fetch Gains fee rates live, drop hardcoded rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* feat: fee-compare per-trade breakdown + live Gains rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings (#2046)

* perf: reduce Vercel invocations - live-prices 1s->5s CDN TTL, alternatives+perp ISR 300s

* fix: double-counted notional in HL vs Gains comparison (#2048)

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings

* fix: double-counted notional in HL vs Gains comparison — use per-side rate

* fix: rename Gains.trade -> Gains, HL -> Hyperliquid in UI (#2049)

* feat: always show Gains simulated, bold winner, pro design (#2051)

* fix: mobile responsive — stack VS card vertically, hide overflow columns (#2052)

* fix: symmetric HL/Gains display + winner logic for single-platform wallets (#2053)

* fix: mobile table Gains fee column always visible, symmetric panels (#2057)

* fix: revalidate hl-cohort + hl-history on aggregate purge (#2069)

* fix(app-store-ratings): last_over_time[31m] on reviews panel for 7d+ staleness (#2073)

* fix: sitemap 90s timeout — maxDuration=60 + tighten internal deadline to 20s

* fix: suppress orphaned buildFullSitemap rejection + guard unhandled getProvider throws

* feat(rpc): add Dogecoin bench #235 (Tatum, dRPC, BlockCypher)

* fix(dogecoin-rpc): remove em-dash from seo_intro

* fix(dogecoin-rpc): em-dash in seo_intro

* fix: sitemap aggregate timeout + CDN caching (#2090) (#2092)

* feat: shareable wallet URLs + HL fee/funding breakdown

- /fee-compare/[venueA]/[venueB]/[wallet] dynamic route auto-submits on load
- pushState updates URL after analyze so any comparison is shareable
- FeeCompareClient accepts initialVenueA/B/Wallet/Days props
- HL wallet side: replace 2-cell grid with inline fee/funding/net breakdown

* fix: remove 'No activity found' text from crossSim projection side

* fix: sitemap aggregate timeout + CDN caching (s-maxage stripped by dynamic route)

* fix: raise maxDuration to 300s and extend sitemap JS timeout to 240s

SIGKILL (signal 9) was killing the function at 60s. The aggregate blob
(4.25MB) exceeds Next.js Data Cache's 2MB cap, so unstable_cache never
caches it and every request re-fetches from /api/aggregate (FETCH_TIMEOUT_MS
= 65s > maxDuration = 60s). SIGKILL discards the buffered response -> 500.

- maxDuration 60 -> 300: gives full build time on cold starts
- JS timeout 55s -> 240s: allows aggregate fetch + HL-builder Prometheus
  sweeps to finish before falling back to the static sitemap

* feat(zcash): add bench #236 with Tatum zcashd, Tatum Zebra, Blockchair

* fix: sitemap JS timeout 240s -> 75s so smoke gate (<90s) can receive response

JS timeout was 240s which exceeds the smoke script's 90s per-attempt window
(scripts/sitemap-smoke.mjs getTextWithRetry). Every smoke attempt would abort
at 90s before the function returned, causing 3-retry failure and auto-rollback.

75s: aggregate FETCH_TIMEOUT_MS is 65s, so cold-cache fallback fires at ~75s,
returns static sitemap at ~76s — within the 90s smoke window. maxDuration=300s
means the process exits cleanly at ~76s with no SIGKILL.

* feat: GMX v2 carry rates — borrow projection for all GMX crossSims
Flotapponnier added a commit that referenced this pull request Aug 27, 2026
* feat: fee-compare tool — Hyperliquid vs Gains wallet analysis (#2054)

* feat: HL vs Gains wallet fee comparison tool

* feat: HL vs Gains wallet fee comparison

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* fix: fetch Gains fee rates live, drop hardcoded rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* feat: fee-compare per-trade breakdown + live Gains rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings (#2046)

* perf: reduce Vercel invocations - live-prices 1s->5s CDN TTL, alternatives+perp ISR 300s

* fix: double-counted notional in HL vs Gains comparison (#2048)

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings

* fix: double-counted notional in HL vs Gains comparison — use per-side rate

* fix: rename Gains.trade -> Gains, HL -> Hyperliquid in UI (#2049)

* feat: always show Gains simulated, bold winner, pro design (#2051)

* fix: mobile responsive — stack VS card vertically, hide overflow columns (#2052)

* fix: symmetric HL/Gains display + winner logic for single-platform wallets (#2053)

* fix: mobile table Gains fee column always visible, symmetric panels (#2057)

* fix: revalidate hl-cohort + hl-history on aggregate purge (#2069)

* fix(app-store-ratings): last_over_time[31m] on reviews panel for 7d+ staleness (#2073)

* fix: sitemap 90s timeout — maxDuration=60 + tighten internal deadline to 20s

* fix: suppress orphaned buildFullSitemap rejection + guard unhandled getProvider throws

* feat(rpc): add Dogecoin bench #235 (Tatum, dRPC, BlockCypher)

* fix(dogecoin-rpc): remove em-dash from seo_intro

* fix(dogecoin-rpc): em-dash in seo_intro

* fix: sitemap aggregate timeout + CDN caching (#2090) (#2092)

* feat: shareable wallet URLs + HL fee/funding breakdown

- /fee-compare/[venueA]/[venueB]/[wallet] dynamic route auto-submits on load
- pushState updates URL after analyze so any comparison is shareable
- FeeCompareClient accepts initialVenueA/B/Wallet/Days props
- HL wallet side: replace 2-cell grid with inline fee/funding/net breakdown

* fix: remove 'No activity found' text from crossSim projection side

* fix: sitemap aggregate timeout + CDN caching (s-maxage stripped by dynamic route)

* fix: raise maxDuration to 300s and extend sitemap JS timeout to 240s

SIGKILL (signal 9) was killing the function at 60s. The aggregate blob
(4.25MB) exceeds Next.js Data Cache's 2MB cap, so unstable_cache never
caches it and every request re-fetches from /api/aggregate (FETCH_TIMEOUT_MS
= 65s > maxDuration = 60s). SIGKILL discards the buffered response -> 500.

- maxDuration 60 -> 300: gives full build time on cold starts
- JS timeout 55s -> 240s: allows aggregate fetch + HL-builder Prometheus
  sweeps to finish before falling back to the static sitemap

* feat(zcash): add bench #236 with Tatum zcashd, Tatum Zebra, Blockchair

* fix: sitemap JS timeout 240s -> 75s so smoke gate (<90s) can receive response

JS timeout was 240s which exceeds the smoke script's 90s per-attempt window
(scripts/sitemap-smoke.mjs getTextWithRetry). Every smoke attempt would abort
at 90s before the function returned, causing 3-retry failure and auto-rollback.

75s: aggregate FETCH_TIMEOUT_MS is 65s, so cold-cache fallback fires at ~75s,
returns static sitemap at ~76s — within the 90s smoke window. maxDuration=300s
means the process exits cleanly at ~76s with no SIGKILL.

* feat(bench): Bitcoin Cash RPC bench #245 — Blockchair, Bitcore, BiggestFan
bakabhai993 pushed a commit to bakabhai993/OpenChainBench that referenced this pull request Sep 12, 2026
…-benchmark-detail

fix: mobile overflow on benchmark detail pages
bakabhai993 pushed a commit to bakabhai993/OpenChainBench that referenced this pull request Sep 12, 2026
bakabhai993 pushed a commit to bakabhai993/OpenChainBench that referenced this pull request Sep 12, 2026
…Bench#2121)

* feat: fee-compare tool — Hyperliquid vs Gains wallet analysis (ChainBench#2054)

* feat: HL vs Gains wallet fee comparison tool

* feat: HL vs Gains wallet fee comparison

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* fix: fetch Gains fee rates live, drop hardcoded rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* feat: fee-compare per-trade breakdown + live Gains rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings (ChainBench#2046)

* perf: reduce Vercel invocations - live-prices 1s->5s CDN TTL, alternatives+perp ISR 300s

* fix: double-counted notional in HL vs Gains comparison (ChainBench#2048)

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings

* fix: double-counted notional in HL vs Gains comparison — use per-side rate

* fix: rename Gains.trade -> Gains, HL -> Hyperliquid in UI (ChainBench#2049)

* feat: always show Gains simulated, bold winner, pro design (ChainBench#2051)

* fix: mobile responsive — stack VS card vertically, hide overflow columns (ChainBench#2052)

* fix: symmetric HL/Gains display + winner logic for single-platform wallets (ChainBench#2053)

* fix: mobile table Gains fee column always visible, symmetric panels (ChainBench#2057)

* fix: revalidate hl-cohort + hl-history on aggregate purge (ChainBench#2069)

* fix(app-store-ratings): last_over_time[31m] on reviews panel for 7d+ staleness (ChainBench#2073)

* fix: sitemap 90s timeout — maxDuration=60 + tighten internal deadline to 20s

* fix: suppress orphaned buildFullSitemap rejection + guard unhandled getProvider throws

* feat(rpc): add Dogecoin bench ChainBench#235 (Tatum, dRPC, BlockCypher)

* fix(dogecoin-rpc): remove em-dash from seo_intro

* fix(dogecoin-rpc): em-dash in seo_intro

* fix: sitemap aggregate timeout + CDN caching (ChainBench#2090) (ChainBench#2092)

* feat: shareable wallet URLs + HL fee/funding breakdown

- /fee-compare/[venueA]/[venueB]/[wallet] dynamic route auto-submits on load
- pushState updates URL after analyze so any comparison is shareable
- FeeCompareClient accepts initialVenueA/B/Wallet/Days props
- HL wallet side: replace 2-cell grid with inline fee/funding/net breakdown

* fix: remove 'No activity found' text from crossSim projection side

* fix: sitemap aggregate timeout + CDN caching (s-maxage stripped by dynamic route)

* fix: raise maxDuration to 300s and extend sitemap JS timeout to 240s

SIGKILL (signal 9) was killing the function at 60s. The aggregate blob
(4.25MB) exceeds Next.js Data Cache's 2MB cap, so unstable_cache never
caches it and every request re-fetches from /api/aggregate (FETCH_TIMEOUT_MS
= 65s > maxDuration = 60s). SIGKILL discards the buffered response -> 500.

- maxDuration 60 -> 300: gives full build time on cold starts
- JS timeout 55s -> 240s: allows aggregate fetch + HL-builder Prometheus
  sweeps to finish before falling back to the static sitemap

* feat(zcash): add bench ChainBench#236 with Tatum zcashd, Tatum Zebra, Blockchair

* fix: include pre-window HL positions in carry projection
bakabhai993 pushed a commit to bakabhai993/OpenChainBench that referenced this pull request Sep 12, 2026
* feat: fee-compare tool — Hyperliquid vs Gains wallet analysis (ChainBench#2054)

* feat: HL vs Gains wallet fee comparison tool

* feat: HL vs Gains wallet fee comparison

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* fix: fetch Gains fee rates live, drop hardcoded rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* feat: fee-compare per-trade breakdown + live Gains rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings (ChainBench#2046)

* perf: reduce Vercel invocations - live-prices 1s->5s CDN TTL, alternatives+perp ISR 300s

* fix: double-counted notional in HL vs Gains comparison (ChainBench#2048)

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings

* fix: double-counted notional in HL vs Gains comparison — use per-side rate

* fix: rename Gains.trade -> Gains, HL -> Hyperliquid in UI (ChainBench#2049)

* feat: always show Gains simulated, bold winner, pro design (ChainBench#2051)

* fix: mobile responsive — stack VS card vertically, hide overflow columns (ChainBench#2052)

* fix: symmetric HL/Gains display + winner logic for single-platform wallets (ChainBench#2053)

* fix: mobile table Gains fee column always visible, symmetric panels (ChainBench#2057)

* fix: revalidate hl-cohort + hl-history on aggregate purge (ChainBench#2069)

* fix(app-store-ratings): last_over_time[31m] on reviews panel for 7d+ staleness (ChainBench#2073)

* fix: sitemap 90s timeout — maxDuration=60 + tighten internal deadline to 20s

* fix: suppress orphaned buildFullSitemap rejection + guard unhandled getProvider throws

* feat(rpc): add Dogecoin bench ChainBench#235 (Tatum, dRPC, BlockCypher)

* fix(dogecoin-rpc): remove em-dash from seo_intro

* fix(dogecoin-rpc): em-dash in seo_intro

* fix: sitemap aggregate timeout + CDN caching (ChainBench#2090) (ChainBench#2092)

* feat: shareable wallet URLs + HL fee/funding breakdown

- /fee-compare/[venueA]/[venueB]/[wallet] dynamic route auto-submits on load
- pushState updates URL after analyze so any comparison is shareable
- FeeCompareClient accepts initialVenueA/B/Wallet/Days props
- HL wallet side: replace 2-cell grid with inline fee/funding/net breakdown

* fix: remove 'No activity found' text from crossSim projection side

* fix: sitemap aggregate timeout + CDN caching (s-maxage stripped by dynamic route)

* fix: raise maxDuration to 300s and extend sitemap JS timeout to 240s

SIGKILL (signal 9) was killing the function at 60s. The aggregate blob
(4.25MB) exceeds Next.js Data Cache's 2MB cap, so unstable_cache never
caches it and every request re-fetches from /api/aggregate (FETCH_TIMEOUT_MS
= 65s > maxDuration = 60s). SIGKILL discards the buffered response -> 500.

- maxDuration 60 -> 300: gives full build time on cold starts
- JS timeout 55s -> 240s: allows aggregate fetch + HL-builder Prometheus
  sweeps to finish before falling back to the static sitemap

* feat(zcash): add bench ChainBench#236 with Tatum zcashd, Tatum Zebra, Blockchair

* fix: sitemap JS timeout 240s -> 75s so smoke gate (<90s) can receive response

JS timeout was 240s which exceeds the smoke script's 90s per-attempt window
(scripts/sitemap-smoke.mjs getTextWithRetry). Every smoke attempt would abort
at 90s before the function returned, causing 3-retry failure and auto-rollback.

75s: aggregate FETCH_TIMEOUT_MS is 65s, so cold-cache fallback fires at ~75s,
returns static sitemap at ~76s — within the 90s smoke window. maxDuration=300s
means the process exits cleanly at ~76s with no SIGKILL.

* feat: add dYdX + Paradex carry projection for all HL/Gains crossSims

* fix: filter Paradex to perp markets only in carry rate fetch
bakabhai993 pushed a commit to bakabhai993/OpenChainBench that referenced this pull request Sep 12, 2026
* feat: fee-compare tool — Hyperliquid vs Gains wallet analysis (ChainBench#2054)

* feat: HL vs Gains wallet fee comparison tool

* feat: HL vs Gains wallet fee comparison

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* fix: fetch Gains fee rates live, drop hardcoded rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* feat: fee-compare per-trade breakdown + live Gains rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings (ChainBench#2046)

* perf: reduce Vercel invocations - live-prices 1s->5s CDN TTL, alternatives+perp ISR 300s

* fix: double-counted notional in HL vs Gains comparison (ChainBench#2048)

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings

* fix: double-counted notional in HL vs Gains comparison — use per-side rate

* fix: rename Gains.trade -> Gains, HL -> Hyperliquid in UI (ChainBench#2049)

* feat: always show Gains simulated, bold winner, pro design (ChainBench#2051)

* fix: mobile responsive — stack VS card vertically, hide overflow columns (ChainBench#2052)

* fix: symmetric HL/Gains display + winner logic for single-platform wallets (ChainBench#2053)

* fix: mobile table Gains fee column always visible, symmetric panels (ChainBench#2057)

* fix: revalidate hl-cohort + hl-history on aggregate purge (ChainBench#2069)

* fix(app-store-ratings): last_over_time[31m] on reviews panel for 7d+ staleness (ChainBench#2073)

* fix: sitemap 90s timeout — maxDuration=60 + tighten internal deadline to 20s

* fix: suppress orphaned buildFullSitemap rejection + guard unhandled getProvider throws

* feat(rpc): add Dogecoin bench ChainBench#235 (Tatum, dRPC, BlockCypher)

* fix(dogecoin-rpc): remove em-dash from seo_intro

* fix(dogecoin-rpc): em-dash in seo_intro

* fix: sitemap aggregate timeout + CDN caching (ChainBench#2090) (ChainBench#2092)

* feat: shareable wallet URLs + HL fee/funding breakdown

- /fee-compare/[venueA]/[venueB]/[wallet] dynamic route auto-submits on load
- pushState updates URL after analyze so any comparison is shareable
- FeeCompareClient accepts initialVenueA/B/Wallet/Days props
- HL wallet side: replace 2-cell grid with inline fee/funding/net breakdown

* fix: remove 'No activity found' text from crossSim projection side

* fix: sitemap aggregate timeout + CDN caching (s-maxage stripped by dynamic route)

* fix: raise maxDuration to 300s and extend sitemap JS timeout to 240s

SIGKILL (signal 9) was killing the function at 60s. The aggregate blob
(4.25MB) exceeds Next.js Data Cache's 2MB cap, so unstable_cache never
caches it and every request re-fetches from /api/aggregate (FETCH_TIMEOUT_MS
= 65s > maxDuration = 60s). SIGKILL discards the buffered response -> 500.

- maxDuration 60 -> 300: gives full build time on cold starts
- JS timeout 55s -> 240s: allows aggregate fetch + HL-builder Prometheus
  sweeps to finish before falling back to the static sitemap

* feat(zcash): add bench ChainBench#236 with Tatum zcashd, Tatum Zebra, Blockchair

* fix: sitemap JS timeout 240s -> 75s so smoke gate (<90s) can receive response

JS timeout was 240s which exceeds the smoke script's 90s per-attempt window
(scripts/sitemap-smoke.mjs getTextWithRetry). Every smoke attempt would abort
at 90s before the function returned, causing 3-retry failure and auto-rollback.

75s: aggregate FETCH_TIMEOUT_MS is 65s, so cold-cache fallback fires at ~75s,
returns static sitemap at ~76s — within the 90s smoke window. maxDuration=300s
means the process exits cleanly at ~76s with no SIGKILL.

* feat: GMX v2 carry rates — borrow projection for all GMX crossSims
bakabhai993 pushed a commit to bakabhai993/OpenChainBench that referenced this pull request Sep 12, 2026
* feat: fee-compare tool — Hyperliquid vs Gains wallet analysis (ChainBench#2054)

* feat: HL vs Gains wallet fee comparison tool

* feat: HL vs Gains wallet fee comparison

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* fix: fetch Gains fee rates live, drop hardcoded rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* feat: fee-compare per-trade breakdown + live Gains rates

* feat: HL vs Gains wallet fee comparison tool

* fix: fetch Gains fee rates live, drop hardcoded 0.12%

* feat: per-trade table, live Gains rates per coin, PnL column

* fix: remove duplicate gainsFeeCache declaration

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings (ChainBench#2046)

* perf: reduce Vercel invocations - live-prices 1s->5s CDN TTL, alternatives+perp ISR 300s

* fix: double-counted notional in HL vs Gains comparison (ChainBench#2048)

* redesign: fee-compare UI — logos, VS card, trade table, per-fill savings

* fix: double-counted notional in HL vs Gains comparison — use per-side rate

* fix: rename Gains.trade -> Gains, HL -> Hyperliquid in UI (ChainBench#2049)

* feat: always show Gains simulated, bold winner, pro design (ChainBench#2051)

* fix: mobile responsive — stack VS card vertically, hide overflow columns (ChainBench#2052)

* fix: symmetric HL/Gains display + winner logic for single-platform wallets (ChainBench#2053)

* fix: mobile table Gains fee column always visible, symmetric panels (ChainBench#2057)

* fix: revalidate hl-cohort + hl-history on aggregate purge (ChainBench#2069)

* fix(app-store-ratings): last_over_time[31m] on reviews panel for 7d+ staleness (ChainBench#2073)

* fix: sitemap 90s timeout — maxDuration=60 + tighten internal deadline to 20s

* fix: suppress orphaned buildFullSitemap rejection + guard unhandled getProvider throws

* feat(rpc): add Dogecoin bench ChainBench#235 (Tatum, dRPC, BlockCypher)

* fix(dogecoin-rpc): remove em-dash from seo_intro

* fix(dogecoin-rpc): em-dash in seo_intro

* fix: sitemap aggregate timeout + CDN caching (ChainBench#2090) (ChainBench#2092)

* feat: shareable wallet URLs + HL fee/funding breakdown

- /fee-compare/[venueA]/[venueB]/[wallet] dynamic route auto-submits on load
- pushState updates URL after analyze so any comparison is shareable
- FeeCompareClient accepts initialVenueA/B/Wallet/Days props
- HL wallet side: replace 2-cell grid with inline fee/funding/net breakdown

* fix: remove 'No activity found' text from crossSim projection side

* fix: sitemap aggregate timeout + CDN caching (s-maxage stripped by dynamic route)

* fix: raise maxDuration to 300s and extend sitemap JS timeout to 240s

SIGKILL (signal 9) was killing the function at 60s. The aggregate blob
(4.25MB) exceeds Next.js Data Cache's 2MB cap, so unstable_cache never
caches it and every request re-fetches from /api/aggregate (FETCH_TIMEOUT_MS
= 65s > maxDuration = 60s). SIGKILL discards the buffered response -> 500.

- maxDuration 60 -> 300: gives full build time on cold starts
- JS timeout 55s -> 240s: allows aggregate fetch + HL-builder Prometheus
  sweeps to finish before falling back to the static sitemap

* feat(zcash): add bench ChainBench#236 with Tatum zcashd, Tatum Zebra, Blockchair

* fix: sitemap JS timeout 240s -> 75s so smoke gate (<90s) can receive response

JS timeout was 240s which exceeds the smoke script's 90s per-attempt window
(scripts/sitemap-smoke.mjs getTextWithRetry). Every smoke attempt would abort
at 90s before the function returned, causing 3-retry failure and auto-rollback.

75s: aggregate FETCH_TIMEOUT_MS is 65s, so cold-cache fallback fires at ~75s,
returns static sitemap at ~76s — within the 90s smoke window. maxDuration=300s
means the process exits cleanly at ~76s with no SIGKILL.

* feat(bench): Bitcoin Cash RPC bench ChainBench#245 — Blockchair, Bitcore, BiggestFan
bakabhai993 pushed a commit to bakabhai993/OpenChainBench that referenced this pull request Sep 12, 2026
bakabhai993 pushed a commit to bakabhai993/OpenChainBench that referenced this pull request Sep 12, 2026
feat(zcash): bench ChainBench#236 Tatum zcashd + Tatum Zebra + Blockchair
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant