From 592ee2c9c65dd017b476616494efc88583e72256 Mon Sep 17 00:00:00 2001 From: Flotapponnier <160007691+Flotapponnier@users.noreply.github.com> Date: Sat, 25 Jul 2026 20:28:44 +0200 Subject: [PATCH] chain-kpis: add Hyperliquid (HyperEVM) so /chains/hyperliquid gets TVL + DEX + stables + native cards (#1430) * jsonld: inline isPartOf Dataset fields to unblock GSC validation Google Search Console validates each Dataset in isolation and does not stitch cross-document @id refs (same failure mode already fixed for creator on this file). The isPartOf @id-only ref to the site-wide Dataset made GSC flag 4 sampled bench pages as missing name + description + creator + distribution.encodingFormat + contentUrl. Inline the required fields on the reference so it stands on its own. Preserves the semantic isPartOf link to /#dataset without duplicating the whole GLOBAL_DATASET_JSONLD payload. * chain-kpis: add Hyperliquid (HyperEVM 999, HYPE, DefiLlama 'Hyperliquid L1', Mobula 'HyperEVM') --------- Co-authored-by: Florent Tapponnier --- harnesses/chain-kpis/cmd/script/registry.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/harnesses/chain-kpis/cmd/script/registry.go b/harnesses/chain-kpis/cmd/script/registry.go index cb2aca55..d3a5ffa4 100644 --- a/harnesses/chain-kpis/cmd/script/registry.go +++ b/harnesses/chain-kpis/cmd/script/registry.go @@ -91,4 +91,11 @@ var Registry = []Chain{ // TVL guard in defillama.go drops the empty TVL card so only real // cards render. {Slug: "polkadot", DefiLlama: "Polkadot", Mobula: "", NativeSymbol: "DOT"}, + // HyperEVM (chain id 999). Hyperliquid Labs's EVM execution layer + // bolted onto the HyperCore perps engine. DefiLlama tracks it as + // "Hyperliquid L1" (verified live on /v2/chains, TVL >$1B), Mobula + // indexes it under "HyperEVM". Native HYPE serves as gas + trading + // asset (Mobula symbol HYPE resolves to the correct market data, + // ~$58 spot / ~$13.9B mcap verified live 2026-07-25). + {Slug: "hyperliquid", DefiLlama: "Hyperliquid L1", Mobula: "HyperEVM", NativeSymbol: "HYPE"}, }