Skip to content

Commit 44d6d51

Browse files
committed
add ds supported networks page
1 parent 8a55fab commit 44d6d51

File tree

3 files changed

+61
-1
lines changed

3 files changed

+61
-1
lines changed

src/config/sidebar.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,10 @@ export const SIDEBAR: Partial<Record<Sections, SectionEntry[]>> = {
291291
title: "Developer Responsibilities",
292292
url: "data-streams/developer-responsibilities",
293293
},
294+
{
295+
title: "Supported Networks",
296+
url: "data-streams/supported-networks",
297+
},
294298
{
295299
title: "Billing",
296300
url: "data-streams/billing",

src/content/data-streams/streams-trade/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Read more about the [Streams Trade Architecture](/data-streams/architecture#stre
2727

2828
To implement Streams Trade in your application:
2929

30-
1. First, ensure Chainlink Automation is available on your desired network by checking the [Supported Networks](/chainlink-automation/overview/supported-networks) page.
30+
1. First, ensure Chainlink Automation is available on your desired network by checking the [Supported Networks](/data-streams/supported-networks) page.
3131
1. Review the [Architecture Documentation](/data-streams/architecture#streams-trade-architecture) to understand the system components.
3232
1. See an [Example Trading Flow](/data-streams/architecture#example-trading-flow-using-streams-trade) to understand how trades are executed.
3333
1. Follow our [Getting Started Guide](/data-streams/getting-started) to set up your first integration.
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
section: dataStreams
3+
date: Last Modified
4+
title: "Supported Networks"
5+
metadata:
6+
title: "Chainlink Data Streams Supported Networks"
7+
description: "Find the list of blockchain networks supported by Chainlink Data Streams. Learn the differences in network availability for Streams Trade and Streams Direct."
8+
---
9+
10+
import DataStreams from "@features/data-streams/common/DataStreams.astro"
11+
12+
<DataStreams section="dsNotes" />
13+
14+
Chainlink Data Streams has two primary implementations: [Streams Trade](/data-streams/streams-trade) and [Streams Direct](/data-streams/streams-direct). Network support differs between these two implementations.
15+
16+
## Streams Trade (Onchain Lookup)
17+
18+
Streams Trade allows smart contracts to access Data Streams onchain using the [`StreamsLookup`](/data-streams/getting-started) capability integrated with [Chainlink Automation](/chainlink-automation).
19+
20+
Streams Trade is currently available on the following networks:
21+
22+
<div style="margin-top: 1rem; margin-bottom: 1rem;">
23+
<div style="margin-bottom: 1rem; display: flex; align-items: center;">
24+
<img src="/assets/chains/arbitrum.svg" style="height: 24px; width: auto; margin-right: 0.5rem;" />
25+
<span>Arbitrum</span>
26+
</div>
27+
<div style="margin-bottom: 1rem; display: flex; align-items: center;">
28+
<img src="/assets/chains/avalanche.svg" style="height: 24px; width: auto; margin-right: 0.5rem;" />
29+
<span>Avalanche</span>
30+
</div>
31+
<div style="margin-bottom: 1rem; display: flex; align-items: center;">
32+
<img src="/assets/chains/base.svg" style="height: 24px; width: auto; margin-right: 0.5rem;" />
33+
<span>Base</span>
34+
</div>
35+
<div style="margin-bottom: 1rem; display: flex; align-items: center;">
36+
<img src="/assets/chains/bnb-chain.svg" style="height: 24px; width: auto; margin-right: 0.5rem;" />
37+
<span>BNB Chain</span>
38+
</div>
39+
<div style="margin-bottom: 1rem; display: flex; align-items: center;">
40+
<img src="/assets/chains/ethereum.svg" style="height: 24px; width: auto; margin-right: 0.5rem;" />
41+
<span>Ethereum</span>
42+
</div>
43+
<div style="margin-bottom: 1rem; display: flex; align-items: center;">
44+
<img src="/assets/chains/optimism.svg" style="height: 24px; width: auto; margin-right: 0.5rem;" />
45+
<span>Optimism</span>
46+
</div>
47+
</div>
48+
49+
## Streams Direct (Offchain Access)
50+
51+
Streams Direct provides data access directly via API or WebSocket for offchain use cases. It involves [verifying report integrity](/data-streams/tutorials/streams-direct/evm-onchain-report-verification) against onchain verifier proxy contracts.
52+
53+
Streams Direct is available on any network listed on the following pages, where you can find the necessary Verifier Proxy addresses:
54+
55+
- [Cryptocurrency Streams](/data-streams/crypto-streams)
56+
- [Real World Asset (RWA) Streams](/data-streams/rwa-streams)

0 commit comments

Comments
 (0)