You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[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`|
23
24
|[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`|
@@ -37,6 +38,14 @@ For a deeper explanation of how liquidity-weighted bid and ask prices work, see
37
38
38
39
For more details on the methodology and risk considerations, see [DEX State Price Streams](../concepts/dex-state-price-streams).
39
40
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
+
40
49
## Real World Asset (RWA) Report Schema
41
50
42
51
[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`).
Copy file name to clipboardExpand all lines: src/content/data-streams/tutorials/evm-onchain-report-verification.mdx
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,6 +171,7 @@ The `verifyReport` function is the core function that handles onchain report ver
171
171
- 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:
172
172
- Schema version `0x0003` corresponds to the [report schema v3](/data-streams/reference/report-schema-v3) (Crypto assets).
173
173
- 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).
174
175
- Schema version `0x0009` corresponds to the [report schema v9](/data-streams/reference/report-schema-v9) (NAV data).
175
176
- Schema version `0x000A` corresponds to the [report schema v10](/data-streams/reference/report-schema-v10) (Backed xStock data).
176
177
- If the report version is unsupported, the function reverts with an InvalidReportVersion error.
0 commit comments