Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions public/changelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,14 @@
}
},
"data": [
{
"category": "integration",
"date": "2025-07-08",
"description": "Chainlink Data Feeds is available on BOB Mainnet. View the available price feed information on the [Price Feed Addresses](https://docs.chain.link/data-feeds/price-feeds/addresses?network=bob&page=1) page.",
"relatedNetworks": ["bob"],
"title": "Data Feeds Expands to BOB Mainnet",
"topic": "Data Feeds"
},
{
"category": "integration",
"date": "2025-07-06",
Expand Down
1 change: 1 addition & 0 deletions src/components/QuickLinks/data/productChainLinks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export const productChainLinks: ProductChainLinks = {
avalanche: "/data-feeds/price-feeds/addresses?page=1&network=avalanche#networks",
base: "/data-feeds/price-feeds/addresses?page=1&network=base#networks",
"bnb-chain": "/data-feeds/price-feeds/addresses?page=1&network=bnb-chain#networks",
bob: "/data-feeds/price-feeds/addresses?page=1&network=bob#networks",
botanix: "/data-feeds/price-feeds/addresses?page=1&network=botanix#networks",
celo: "/data-feeds/price-feeds/addresses?page=1&network=celo#networks",
ethereum: "/data-feeds/price-feeds/addresses?page=1&network=ethereum#networks",
Expand Down
18 changes: 18 additions & 0 deletions src/features/data/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,24 @@ export const CHAINS: Chain[] = [
],
label: "BNB Chain",
},
{
page: "bob",
label: "BOB",
title: "BOB Data Feeds",
img: "/assets/chains/bob.svg",
networkStatusUrl: "https://explorer.gobob.xyz/",
tags: ["default"],
supportedFeatures: ["feeds"],
networks: [
{
name: "BOB Mainnet",
explorerUrl: "https://explorer.gobob.xyz/address/%s",
networkType: "mainnet",
rddUrl: "https://reference-data-directory.vercel.app/feeds-bitcoin-mainnet-bob-1.json",
queryString: "bob-mainnet",
},
],
},
{
page: "botanix",
label: "Botanix",
Expand Down
4 changes: 4 additions & 0 deletions src/scripts/data/detect-new-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@
xlayer: "https://reference-data-directory.vercel.app/feeds-ethereum-mainnet-xlayer-1.json",
ronin: "https://reference-data-directory.vercel.app/feeds-ronin-mainnet.json",
tron: "https://docs.chain.link/files/json/feeds-tron-mainnet.json",
botanix: "https://reference-data-directory.vercel.app/feeds-bitcoin-mainnet-botanix.json",
monad: "https://reference-data-directory.vercel.app/feeds-monad-testnet.json",
polygonkatana: "https://reference-data-directory.vercel.app/feeds-polygon-mainnet-katana.json",
bob: "https://reference-data-directory.vercel.app/feeds-bitcoin-mainnet-bob-1.json",
}

// Path to the baseline JSON file that contains known feed IDs
Expand Down Expand Up @@ -252,12 +256,12 @@
* @returns Parsed JSON array of feed definitions
* @throws Error if the fetch request fails
*/
async function fetchNetworkJson(url: string): Promise<any[]> {

Check warning on line 259 in src/scripts/data/detect-new-data.ts

View workflow job for this annotation

GitHub Actions / eslint

Unexpected any. Specify a different type

Check warning on line 259 in src/scripts/data/detect-new-data.ts

View workflow job for this annotation

GitHub Actions / eslint

Unexpected any. Specify a different type
const res = await fetch(url)
if (!res.ok) {
throw new Error(`Failed to fetch ${url}: ${res.status} ${res.statusText}`)
}
return (await res.json()) as any[]

Check warning on line 264 in src/scripts/data/detect-new-data.ts

View workflow job for this annotation

GitHub Actions / eslint

Unexpected any. Specify a different type

Check warning on line 264 in src/scripts/data/detect-new-data.ts

View workflow job for this annotation

GitHub Actions / eslint

Unexpected any. Specify a different type
}

/**
Expand All @@ -272,7 +276,7 @@
* @param network - Network identifier (e.g., "ethereum", "bnb-chain")
* @returns Standardized DataItem or null if validation fails
*/
function convertToDataItem(obj: any, network: string): DataItem | null {

Check warning on line 279 in src/scripts/data/detect-new-data.ts

View workflow job for this annotation

GitHub Actions / eslint

Unexpected any. Specify a different type

Check warning on line 279 in src/scripts/data/detect-new-data.ts

View workflow job for this annotation

GitHub Actions / eslint

Unexpected any. Specify a different type
// 1) Must have a `path`
if (!obj?.path) {
return null
Expand Down
Loading