Skip to content

Commit c7cb933

Browse files
committed
minor updates
1 parent 7fa9448 commit c7cb933

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/content/data-streams/reference/report-schema-overview.mdx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Below is a summary of all available Data Streams report schemas, their main use
1919
| :------------------------------------------------------------ | :----------------------------------------- | :---------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------- |
2020
| [Cryptocurrency](#cryptocurrency-report-schema) | [View schema (v3)](./report-schema-v3) | Crypto price streams | `price`, `bid`, `ask` |
2121
| [DEX State Price](#dex-state-price-report-schema) | [View schema (v3)](./report-schema-v3-dex) | DEX state crypto price streams | `price`, `bid`, `ask` (All fields equal; [details](../concepts/dex-state-price-streams#how-to-use-dex-state-price-streams)) |
22+
| [Exchange Rate](#exchange-rate-report-schema) | [View schema (v7)](./report-schema-v7) | Tokenized asset exchange rates | `exchangeRate` |
2223
| [Real World Asset (RWA)](#real-world-asset-rwa-report-schema) | [View schema (v8)](./report-schema-v8) | Real World Asset (RWA) price streams | `midPrice`, `marketStatus`, `lastUpdateTimestamp` |
2324
| [Net Asset Value (NAV)](#net-asset-value-nav-report-schema) | [View schema (v9)](./report-schema-v9) | Net Asset Value (NAV) streams | `aum`, `navPerShare`, `navDate`, `ripcord` |
2425
| [Backed xStock](#backed-xstock-report-schema) | [View schema (v10)](./report-schema-v10) | Tokenized stocks and backed asset streams | `price`, `tokenizedPrice`, `marketStatus`, `currentMultiplier`, `newMultiplier` |
@@ -37,6 +38,14 @@ For a deeper explanation of how liquidity-weighted bid and ask prices work, see
3738

3839
For more details on the methodology and risk considerations, see [DEX State Price Streams](../concepts/dex-state-price-streams).
3940

41+
## Exchange Rate Report Schema
42+
43+
[Chainlink Exchange Rate Data Streams](./report-schema-v7) provide tamper-proof access to the exchange rate of tokenized assets, delivered over the low latency, high frequency Chainlink Data Streams infrastructure. Exchange rates typically read directly from onchain smart contracts. These exchange rates generally have a single calculating agent: the issuing protocol.
44+
45+
While the Data Streams architecture is designed to deliver updates at least once per second, the exchange rate itself is often updated only once per day by the data source, in line with standard market practices. Data Streams ensures that any Exchange Rate update, whenever it occurs, is captured and made available immediately and at low latency, allowing seamless integration into onchain applications alongside other real-time data streams.
46+
47+
The v7 schema is designed specifically for Exchange Rate feeds and reports a single value: the exchange rate (`exchangeRate`).
48+
4049
## Real World Asset (RWA) Report Schema
4150

4251
[Chainlink RWA Data Streams](./report-schema-v8) provide fresh, reliable, and accurate financial market data for real-world assets, enabling DeFi users to gain onchain exposure to physical assets. Each report includes a staleness measure (`lastUpdateTimestamp`), consensus median price (`midPrice`) and market status (`marketStatus`).

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ The `verifyReport` function is the core function that handles onchain report ver
171171
- It then extracts the report version by reading the first two bytes of the report data, which correspond to the schema version encoded in the stream ID:
172172
- Schema version `0x0003` corresponds to the [report schema v3](/data-streams/reference/report-schema-v3) (Crypto assets).
173173
- Schema version `0x0008` corresponds to the [report schema v8](/data-streams/reference/report-schema-v8) (Real World Assets).
174+
- Schema version `0x0007` corresponds to the [report schema v7](/data-streams/reference/report-schema-v7) (Exchange Rates).
174175
- Schema version `0x0009` corresponds to the [report schema v9](/data-streams/reference/report-schema-v9) (NAV data).
175176
- Schema version `0x000A` corresponds to the [report schema v10](/data-streams/reference/report-schema-v10) (Backed xStock data).
176177
- If the report version is unsupported, the function reverts with an InvalidReportVersion error.

0 commit comments

Comments
 (0)