Skip to content

Commit 29f6948

Browse files
committed
updated *-sdk-decode->*-sdk-fetch
1 parent f408858 commit 29f6948

File tree

14 files changed

+27
-27
lines changed

14 files changed

+27
-27
lines changed

src/config/sidebar.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,8 +406,8 @@ export const SIDEBAR: Partial<Record<Sections, SectionEntry[]>> = {
406406
},
407407
{
408408
title: "Fetch and decode reports",
409-
url: "data-streams/tutorials/go-sdk-decode",
410-
highlightAsCurrent: ["data-streams/tutorials/rust-sdk-decode"],
409+
url: "data-streams/tutorials/go-sdk-fetch",
410+
highlightAsCurrent: ["data-streams/tutorials/rust-sdk-fetch"],
411411
},
412412
{
413413
title: "Stream and decode reports (WebSocket)",

src/content/data-streams/architecture.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
keywords: ["Data Streams", "Architecture", "Oracle Network", "DON", "Verification", "API", "Streams Trade"]
88
whatsnext:
99
{
10-
"Learn more about the Standard API Implementation": "/data-streams/tutorials/go-sdk-decode",
10+
"Learn more about the Standard API Implementation": "/data-streams/tutorials/go-sdk-fetch",
1111
"Learn more about the Streams Trade Implementation": "/data-streams/streams-trade",
1212
"Find the list of available Stream IDs": "/data-streams/crypto-streams",
1313
"Find the schema of data to expect from Data Streams reports: Crypto": "/data-streams/reference/report-schema-v3",

src/content/data-streams/developer-responsibilities.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ whatsnext:
1111
"Find the schema of data to expect from Data Streams reports: Crypto": "/data-streams/reference/report-schema-v3",
1212
"Find the schema of data to expect from Data Streams reports: RWA": "/data-streams/reference/report-schema-v8",
1313
"Learn the basics about how to retrieve Data Streams reports using the Streams Trade implementation": "/data-streams/getting-started",
14-
"Learn how to fetch and decode Data Streams reports using the Data Streams API": "/data-streams/tutorials/go-sdk-decode",
14+
"Learn how to fetch and decode Data Streams reports using the Data Streams API": "/data-streams/tutorials/go-sdk-fetch",
1515
}
1616
---
1717

src/content/data-streams/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
keywords: ["Chainlink", "Data Streams", "Oracle", "DeFi", "Market Data", "Low Latency", "High Frequency"]
99
whatsnext:
1010
{
11-
"Learn how to fetch and decode Data Streams reports with the API": "/data-streams/tutorials/go-sdk-decode",
11+
"Learn how to fetch and decode Data Streams reports with the API": "/data-streams/tutorials/go-sdk-fetch",
1212
"Find the list of available Stream IDs": "/data-streams/crypto-streams",
1313
"Find the schema of data to expect from Data Streams reports: Crypto": "/data-streams/reference/report-schema-v3",
1414
"Find the schema of data to expect from Data Streams reports: RWA": "/data-streams/reference/report-schema-v8",
@@ -88,7 +88,7 @@ Access data directly through REST APIs or WebSocket connections using our SDKs:
8888

8989
1. Explore Available Data: Browse [available Stream IDs](/data-streams/crypto-streams) and [report schemas](/data-streams/reference/report-schema-v3) to see what data is available.
9090

91-
1. Try the API: Follow our [hands-on tutorial](/data-streams/tutorials/go-sdk-decode) to fetch and decode your first report.
91+
1. Try the API: Follow our [hands-on tutorial](/data-streams/tutorials/go-sdk-fetch) to fetch and decode your first report.
9292

9393
1. Implement Verification: Add [onchain verification](/data-streams/reference/data-streams-api/onchain-verification) to ensure data authenticity in your smart contracts.
9494

src/content/data-streams/reference/data-streams-api/go-sdk.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
keywords: ["Go SDK", "Golang", "Data Streams", "Integration", "API Client", "WebSocket Client", "Report Decoding"]
99
whatsnext:
1010
{
11-
"Learn how to fetch and decode Data Streams reports using the Data Streams SDK": "/data-streams/tutorials/go-sdk-decode",
11+
"Learn how to fetch and decode Data Streams reports using the Data Streams SDK": "/data-streams/tutorials/go-sdk-fetch",
1212
"Learn how to stream and decode reports via a WebSocket connection using the Data Streams SDK": "/data-streams/tutorials/go-sdk-stream",
1313
}
1414
---

src/content/data-streams/reference/data-streams-api/rust-sdk.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
keywords: ["Rust SDK", "Data Streams", "Integration", "API Client", "WebSocket Client", "Report Decoding"]
99
whatsnext:
1010
{
11-
"Learn how to fetch and decode Data Streams reports using the Data Streams SDK": "/data-streams/tutorials/rust-sdk-decode",
11+
"Learn how to fetch and decode Data Streams reports using the Data Streams SDK": "/data-streams/tutorials/rust-sdk-fetch",
1212
"Learn how to stream and decode reports via a WebSocket connection using the Data Streams SDK": "/data-streams/tutorials/rust-sdk-stream",
1313
}
1414
---
@@ -217,7 +217,7 @@ match client.get_latest_report(feed_id).await {
217217

218218
### Step-by-Step Guides
219219

220-
- [Fetch and decode reports using the REST API](/data-streams/tutorials/rust-sdk-decode)
220+
- [Fetch and decode reports using the REST API](/data-streams/tutorials/rust-sdk-fetch)
221221
- [Stream and decode reports via WebSocket](/data-streams/tutorials/rust-sdk-stream)
222222

223223
### More Examples

src/content/data-streams/tutorials/evm-onchain-report-verification.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ In this tutorial, you'll learn how to verify onchain the integrity of reports by
4444

4545
Make sure you understand how to fetch reports via the [REST API](/data-streams/reference/data-streams-api/interface-api) or [WebSocket](/data-streams/reference/data-streams-api/interface-ws) connection. Refer to the following tutorials for more information:
4646

47-
- [Fetch and decode reports via a REST API](/data-streams/tutorials/go-sdk-decode)
47+
- [Fetch and decode reports via a REST API](/data-streams/tutorials/go-sdk-fetch)
4848
- [Stream and decode reports via WebSocket](/data-streams/tutorials/go-sdk-stream)
4949

5050
## Requirements
@@ -126,7 +126,7 @@ For this tutorial on _Arbitrum Sepolia_, fees are required, so you need to fund
126126

127127
1. In Remix, on the **Deploy & Run Transactions** tab, expand your verifier contract under the **Deployed Contracts** section.
128128

129-
1. Fill in the `verifyReport` function input parameter with the report payload you want to verify. You can use the following full report payload obtained in the [Fetch and decode report via a REST API](/data-streams/tutorials/go-sdk-decode) tutorial as an example:
129+
1. Fill in the `verifyReport` function input parameter with the report payload you want to verify. You can use the following full report payload obtained in the [Fetch and decode report via a REST API](/data-streams/tutorials/go-sdk-fetch) tutorial as an example:
130130

131131
```
132132
0x000660403d36be006d0c15d9b306f93c8660c5cfeab7db8e28c78ba316d395970000000000000000000000000000000000000000000000000000000032c3780a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000280010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001200003c8e550d2fc5304993010112de9b69798297e4cc11990ee6250e464daf760000000000000000000000000000000000000000000000000000000006706e595000000000000000000000000000000000000000000000000000000006706e595000000000000000000000000000000000000000000000000000025bd3eb74c080000000000000000000000000000000000000000000000000021c6a95c654c7400000000000000000000000000000000000000000000000000000000670837150000000000000000000000000000000000000000000000079a2ab4077fc8fc6000000000000000000000000000000000000000000000000799fcb42536dfd8300000000000000000000000000000000000000000000000079a59496c3f29a0000000000000000000000000000000000000000000000000000000000000000002bd4acd37ce3cd5799de05d156ab328a5effd94468ebbaf2ff18d13d9631259cbe66cca01af6a8bb36e79d2d731a44e16791ee31e46ce27ed6530f1590cd7734c0000000000000000000000000000000000000000000000000000000000000002391562f1f2e4986bdb978fbf5ee27f7012992a79301af42d3473761ef2ede6271a61fbf4b32ac5be68a598bcfa523e035b624dab3b3d9a46276834f824ee592a

src/content/data-streams/tutorials/go-sdk-decode.mdx renamed to src/content/data-streams/tutorials/go-sdk-fetch.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ import DataStreams from "@features/data-streams/common/DataStreams.astro"
2323
pages={[
2424
{
2525
name: "Go SDK",
26-
url: "/data-streams/tutorials/go-sdk-decode",
26+
url: "/data-streams/tutorials/go-sdk-fetch",
2727
icon: "/images/tutorial-icons/go_logo_black.png",
2828
},
2929
{
3030
name: "Rust SDK",
31-
url: "/data-streams/tutorials/rust-sdk-decode",
31+
url: "/data-streams/tutorials/rust-sdk-fetch",
3232
icon: "/images/tutorial-icons/rust_logo_blk.svg",
3333
},
3434
]}

src/content/data-streams/tutorials/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Explore several tutorials to learn how to use the Data Streams.
1818

1919
## Fetch, Stream, and Decode Reports
2020

21-
- [Fetch and decode reports](/data-streams/tutorials/go-sdk-decode): Learn how to fetch and decode reports from the Data Streams Aggregation Network, using the [Go](/data-streams/reference/data-streams-api/go-sdk) or [Rust](/data-streams/reference/data-streams-api/rust-sdk) SDKs.
21+
- [Fetch and decode reports](/data-streams/tutorials/go-sdk-fetch): Learn how to fetch and decode reports from the Data Streams Aggregation Network, using the [Go](/data-streams/reference/data-streams-api/go-sdk) or [Rust](/data-streams/reference/data-streams-api/rust-sdk) SDKs.
2222
- [Stream and decode reports (WebSocket)](/data-streams/tutorials/go-sdk-stream): Learn how to listen for real-time reports from the Data Streams Aggregation Network, decode the report data, and log their attributes, using the [Go](/data-streams/reference/data-streams-api/go-sdk) or [Rust](/data-streams/reference/data-streams-api/rust-sdk) SDKs.
2323

2424
<Aside type="note" title="Alternative to SDKs">

src/content/data-streams/tutorials/rust-sdk-decode.mdx renamed to src/content/data-streams/tutorials/rust-sdk-fetch.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ import DataStreams from "@features/data-streams/common/DataStreams.astro"
2323
pages={[
2424
{
2525
name: "Go SDK",
26-
url: "/data-streams/tutorials/go-sdk-decode",
26+
url: "/data-streams/tutorials/go-sdk-fetch",
2727
icon: "/images/tutorial-icons/go_logo_black.png",
2828
},
2929
{
3030
name: "Rust SDK",
31-
url: "/data-streams/tutorials/rust-sdk-decode",
31+
url: "/data-streams/tutorials/rust-sdk-fetch",
3232
icon: "/images/tutorial-icons/rust_logo_blk.svg",
3333
},
3434
]}

0 commit comments

Comments
 (0)