Skip to content

Commit 0482703

Browse files
khadnidwightjl
andauthored
Data Streams on Avalanche (#1987)
* Update DS Feeds page * Add Avalanche for Data Streams * Correct Fuji Verifier Proxy address * Add feeds full name back * Update Quick Links * Remove feeds full name for testnet * Release note --------- Co-authored-by: Dwight Lyle <[email protected]>
1 parent 3ef1318 commit 0482703

File tree

5 files changed

+28
-5
lines changed

5 files changed

+28
-5
lines changed

src/components/QuickLinks/data/productChainLinks.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ export const productChainLinks: ProductChainLinks = {
6363
learnMorelink: "data-streams",
6464
logo: dataStreamsLogo,
6565
chains: {
66-
arbitrum: "/data-streams/stream-ids?network=arbitrum",
66+
arbitrum: "/data-streams/stream-ids",
67+
avalanche: "/data-streams/stream-ids",
6768
},
6869
},
6970
Functions: {

src/content/data-streams/release-notes.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ import { Aside } from "@components"
1717
integrating Chainlink Data Streams with your applications.
1818
</Aside>
1919

20+
## 2024-06-27 - Avalanche
21+
22+
Chainlink Data Streams is available in Early Access on <a href="/data-streams/stream-ids?network=arbitrum&page=1">Avalanche</a>.
23+
2024
## 2024-01-25 - Arbitrum Sepolia
2125

2226
Chainlink Data Streams is available in Early Access on <a href="/data-streams/stream-ids?network=arbitrum&page=1">Arbitrum Sepolia</a>.

src/features/data/chains.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export const CHAINS: Chain[] = [
133133
title: "Avalanche Data Feeds",
134134
img: "/assets/chains/avalanche.svg",
135135
networkStatusUrl: "https://status.avax.network/",
136-
tags: ["default", "proofOfReserve", "rates"],
136+
tags: ["default", "proofOfReserve", "rates", "streams"],
137137
supportedFeatures: ["vrfSubscription", "vrfDirectFunding", "feeds"],
138138
networks: [
139139
{
@@ -142,15 +142,15 @@ export const CHAINS: Chain[] = [
142142
networkType: "mainnet",
143143
rddUrl: "https://reference-data-directory.vercel.app/feeds-avalanche-mainnet.json",
144144
queryString: "avalanche-mainnet",
145-
tags: ["proofOfReserve"],
145+
tags: ["proofOfReserve", "streams"],
146146
},
147147
{
148148
name: "Avalanche Testnet",
149149
explorerUrl: "https://testnet.snowtrace.io/address/%s",
150150
networkType: "testnet",
151151
rddUrl: "https://reference-data-directory.vercel.app/feeds-avalanche-fuji-testnet.json",
152152
queryString: "avalanche-fuji",
153-
tags: ["proofOfReserve", "rates"],
153+
tags: ["proofOfReserve", "rates", "streams"],
154154
},
155155
],
156156
label: "Avalanche",

src/features/feeds/components/Tables.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,21 @@ const StreamsNetworksData = [
305305
explorerUrl: "https://sepolia.arbiscan.io/address/%s",
306306
},
307307
},
308+
{
309+
network: "Avalanche",
310+
logoUrl: "/assets/chains/avalanche.svg",
311+
networkStatus: "https://status.avax.network/",
312+
mainnet: {
313+
label: "Avalanche Mainnet",
314+
verifierProxy: "0x79BAa65505C6682F16F9b2C7F8afEBb1821BE3f6",
315+
explorerUrl: "https://snowtrace.io/address/%s",
316+
},
317+
testnet: {
318+
label: "Avalanche Fuji Testnet",
319+
verifierProxy: "0x2bf612C65f5a4d388E687948bb2CF842FFb8aBB3",
320+
explorerUrl: "https://testnet.snowtrace.io/address/%s",
321+
},
322+
},
308323
]
309324

310325
export const StreamsVerifierProxyTable = () => {

src/features/landing/data/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,10 @@ export const evmProducts = [
8080
["Available Schemas", "data-streams/reference/report-schema"],
8181
["Interface Reference", "data-streams/reference/interfaces"],
8282
],
83-
chains: [{ id: "arbitrum", title: "Arbitrum" }],
83+
chains: [
84+
{ id: "arbitrum", title: "Arbitrum" },
85+
{ id: "avalanche", title: "Avalanche" },
86+
],
8487
},
8588
{
8689
title: "Functions",

0 commit comments

Comments
 (0)