Skip to content

Commit 3f07d15

Browse files
authored
DF - Bob Mainnet Integration (#2807)
1 parent fe63de3 commit 3f07d15

File tree

4 files changed

+31
-0
lines changed

4 files changed

+31
-0
lines changed

public/changelog.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,14 @@
298298
}
299299
},
300300
"data": [
301+
{
302+
"category": "integration",
303+
"date": "2025-07-08",
304+
"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.",
305+
"relatedNetworks": ["bob"],
306+
"title": "Data Feeds Expands to BOB Mainnet",
307+
"topic": "Data Feeds"
308+
},
301309
{
302310
"category": "integration",
303311
"date": "2025-07-06",

src/components/QuickLinks/data/productChainLinks.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ export const productChainLinks: ProductChainLinks = {
9797
avalanche: "/data-feeds/price-feeds/addresses?page=1&network=avalanche#networks",
9898
base: "/data-feeds/price-feeds/addresses?page=1&network=base#networks",
9999
"bnb-chain": "/data-feeds/price-feeds/addresses?page=1&network=bnb-chain#networks",
100+
bob: "/data-feeds/price-feeds/addresses?page=1&network=bob#networks",
100101
botanix: "/data-feeds/price-feeds/addresses?page=1&network=botanix#networks",
101102
celo: "/data-feeds/price-feeds/addresses?page=1&network=celo#networks",
102103
ethereum: "/data-feeds/price-feeds/addresses?page=1&network=ethereum#networks",

src/features/data/chains.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,24 @@ export const CHAINS: Chain[] = [
165165
],
166166
label: "BNB Chain",
167167
},
168+
{
169+
page: "bob",
170+
label: "BOB",
171+
title: "BOB Data Feeds",
172+
img: "/assets/chains/bob.svg",
173+
networkStatusUrl: "https://explorer.gobob.xyz/",
174+
tags: ["default"],
175+
supportedFeatures: ["feeds"],
176+
networks: [
177+
{
178+
name: "BOB Mainnet",
179+
explorerUrl: "https://explorer.gobob.xyz/address/%s",
180+
networkType: "mainnet",
181+
rddUrl: "https://reference-data-directory.vercel.app/feeds-bitcoin-mainnet-bob-1.json",
182+
queryString: "bob-mainnet",
183+
},
184+
],
185+
},
168186
{
169187
page: "botanix",
170188
label: "Botanix",

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ const NETWORK_ENDPOINTS: Record<string, string> = {
4343
xlayer: "https://reference-data-directory.vercel.app/feeds-ethereum-mainnet-xlayer-1.json",
4444
ronin: "https://reference-data-directory.vercel.app/feeds-ronin-mainnet.json",
4545
tron: "https://docs.chain.link/files/json/feeds-tron-mainnet.json",
46+
botanix: "https://reference-data-directory.vercel.app/feeds-bitcoin-mainnet-botanix.json",
47+
monad: "https://reference-data-directory.vercel.app/feeds-monad-testnet.json",
48+
polygonkatana: "https://reference-data-directory.vercel.app/feeds-polygon-mainnet-katana.json",
49+
bob: "https://reference-data-directory.vercel.app/feeds-bitcoin-mainnet-bob-1.json",
4650
}
4751

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

0 commit comments

Comments
 (0)