Skip to content

Commit 9501e03

Browse files
authored
hyperevm mainnet integration (#3075)
1 parent 699d112 commit 9501e03

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

public/changelog.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,14 @@
318318
}
319319
},
320320
"data": [
321+
{
322+
"category": "integration",
323+
"date": "2025-10-17",
324+
"description": "Chainlink Data Feeds is available on HyperEVM Mainnet. View the available price feed information on the [Price Feed Addresses](https://docs.chain.link/data-feeds/price-feeds/addresses?network=hyperevm&page=1) page.",
325+
"relatedNetworks": ["hyperevm"],
326+
"title": "Data Feeds Expands to HyperEVM Mainnet",
327+
"topic": "Data Feeds"
328+
},
321329
{
322330
"category": "integration",
323331
"date": "2025-10-14",

src/components/QuickLinks/data/productChainLinks.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ export const productChainLinks: ProductChainLinks = {
111111
fantom: "/data-feeds/price-feeds/addresses?page=1&network=fantom#networks",
112112
"gnosis-chain": "/data-feeds/price-feeds/addresses?page=1&network=gnosis-chain#networks",
113113
hedera: "/data-feeds/price-feeds/addresses?page=1&network=hedera#networks",
114+
hyperevm: "/data-feeds/price-feeds/addresses?page=1&network=hyperevm#networks",
114115
linea: "/data-feeds/price-feeds/addresses?page=1&network=linea#networks",
115116
mantle: "/data-feeds/price-feeds/addresses?page=1&network=mantle#networks",
116117
metis: "/data-feeds/price-feeds/addresses?page=1&network=metis#networks",

src/features/data/chains.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,24 @@ export const CHAINS: Chain[] = [
345345
},
346346
],
347347
},
348+
{
349+
page: "hyperevm",
350+
label: "HyperEVM",
351+
title: "HyperEVM Data Feeds",
352+
img: "/assets/chains/hyperevm.svg",
353+
networkStatusUrl: "https://hyperevmscan.statuspage.io/",
354+
tags: ["default"],
355+
supportedFeatures: ["feeds"],
356+
networks: [
357+
{
358+
name: "HyperEVM Mainnet",
359+
explorerUrl: "https://hyperevmscan.io/address/%s",
360+
networkType: "mainnet",
361+
rddUrl: "https://reference-data-directory.vercel.app/feeds-hyperliquid-mainnet.json",
362+
queryString: "hyperliquid-mainnet",
363+
},
364+
],
365+
},
348366
{
349367
page: "katana",
350368
label: "Katana",

src/scripts/data/detect-new-data.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ const NETWORK_ENDPOINTS: Record<string, string> = {
4848
polygonkatana: "https://reference-data-directory.vercel.app/feeds-polygon-mainnet-katana.json",
4949
bob: "https://reference-data-directory.vercel.app/feeds-bitcoin-mainnet-bob-1.json",
5050
plasma: "https://reference-data-directory.vercel.app/feeds-plasma-mainnet.json",
51+
hyperevm: "https://reference-data-directory.vercel.app/feeds-hyperliquid-mainnet.json",
5152
}
5253

5354
// Path to the baseline JSON file that contains known feed IDs

0 commit comments

Comments
 (0)