diff --git a/public/changelog.json b/public/changelog.json index 42dd6ef56b2..eea849e224a 100644 --- a/public/changelog.json +++ b/public/changelog.json @@ -1,4 +1,16 @@ [ + { + "category": "integration", + "changes": [], + "date": "2025-02-20", + "description": "Chainlink Data Feeds expands support to new blockchains:\n\n- Ink Mainnet\n- Ink Sepolia testnet\n- Mantle testnet\n- Ronin Saigon testnet\n- Sonic Blaze testnet\n\nView the available price feed information on the [Price Feed Addresses](https://docs.chain.link/data-feeds/price-feeds/addresses?network=ink&page=1) page.", + "relatedNetworks": ["ink", "mantle", "ronin", "sonic"], + "relatedTokens": [], + "title": "Data Feeds Expands to New Blockchains", + "topic": "data", + "subTopic": "data-feeds", + "urls": [] + }, { "category": "integration", "changes": [], diff --git a/src/components/QuickLinks/data/productChainLinks.ts b/src/components/QuickLinks/data/productChainLinks.ts index 7ecc8227d24..7867ac33511 100644 --- a/src/components/QuickLinks/data/productChainLinks.ts +++ b/src/components/QuickLinks/data/productChainLinks.ts @@ -80,6 +80,7 @@ export const productChainLinks: ProductChainLinks = { fantom: "/data-feeds/price-feeds/addresses?network=fantom", "gnosis-chain": "/data-feeds/price-feeds/addresses?network=gnosis-chain", hedera: "/data-feeds/price-feeds/addresses?network=hedera", + ink: "/data-feeds/price-feeds/addresses?network=ink", linea: "/data-feeds/price-feeds/addresses?network=linea", mantle: "/data-feeds/price-feeds/addresses?network=mantle", metis: "/data-feeds/price-feeds/addresses?network=metis", diff --git a/src/features/data/chains.ts b/src/features/data/chains.ts index 088ca77c6d0..8cb1adea34a 100644 --- a/src/features/data/chains.ts +++ b/src/features/data/chains.ts @@ -579,6 +579,13 @@ export const CHAINS: Chain[] = [ rddUrl: "https://reference-data-directory.vercel.app/feeds-sonic-mainnet.json", queryString: "sonic-mainnet", }, + { + name: "Sonic Blaze testnet", + explorerUrl: "https://testnet.sonicscan.org/address/%s", + networkType: "testnet", + rddUrl: "https://reference-data-directory.vercel.app/feeds-sonic-testnet-blaze.json", + queryString: "sonic-testnet", + }, ], }, { @@ -597,6 +604,13 @@ export const CHAINS: Chain[] = [ rddUrl: "https://reference-data-directory.vercel.app/feeds-ethereum-mainnet-mantle-1.json", queryString: "mantle-mainnet", }, + { + name: "Mantle testnet", + explorerUrl: "https://sepolia.mantlescan.xyz/address/%s", + networkType: "testnet", + rddUrl: "https://reference-data-directory.vercel.app/feeds-ethereum-testnet-sepolia-mantle-1.json", + queryString: "mantle-testnet", + }, ], }, { @@ -640,6 +654,13 @@ export const CHAINS: Chain[] = [ rddUrl: "https://reference-data-directory.vercel.app/feeds-ronin-mainnet.json", queryString: "ronin-mainnet", }, + { + name: "Ronin Saigon testnet", + explorerUrl: "https://saigon-app.roninchain.com/address/%s", + networkType: "testnet", + rddUrl: "https://reference-data-directory.vercel.app/feeds-ronin-saigon-testnet.json", + queryString: "ronin-mainnet", + }, ], }, { @@ -678,6 +699,31 @@ export const CHAINS: Chain[] = [ }, ], }, + { + page: "ink", + label: "Ink", + title: "Ink Data Feeds", + img: "/assets/chains/ink.svg", + networkStatusUrl: "https://status.inkonchain.com/", + tags: ["default"], + supportedFeatures: ["feeds"], + networks: [ + { + name: "Ink Mainnet", + explorerUrl: "https://explorer.inkonchain.com/address/%s", + networkType: "mainnet", + rddUrl: "https://reference-data-directory.vercel.app/feeds-ethereum-mainnet-ink-1.json", + queryString: "ink-mainnet", + }, + { + name: "Ink Sepolia testnet", + explorerUrl: "https://explorer-sepolia.inkonchain.com/address/%s", + networkType: "testnet", + rddUrl: "https://reference-data-directory.vercel.app/feeds-ink-testnet-sepolia.json", + queryString: "ink-sepolia", + }, + ], + }, ] // All mainnet feeds. Used for deprecated feeds.