Oracles
Chronicle (opens in a new tab)
The first Oracle on Ethereum, Chronicle Protocol's decentralized Oracle network was originally built within MakerDAO for the development of DAI and is now available to builders on Superseed. For more info explore Chronicle's documentation: https://docs.chroniclelabs.org/ (opens in a new tab).
Full list of price feeds on Superseed: https://chroniclelabs.org/dashboard/oracles?blockchain=SSEED (opens in a new tab)
Pyth (opens in a new tab)
The Pyth Network offers over 500 high-fidelity price feeds (opens in a new tab) for DeFi applications by aggregating data from trusted sources and delivering it with low latency.
For more details on how to use the Pyth feeds, visit the Pyth Network Price Feeds documentation (opens in a new tab).
Supported Networks
DIA (opens in a new tab)
DIA is a cross-chain oracle provider that sources granular market data from diverse exchanges, including CEXs and DEXs. Its data sourcing is thorough, enabling unparalleled transparency and customizability for resilient price feeds for 20,000+ assets. Its versatile data processing and delivery ensures adaptability and reliability for any decentralized application.
Oracle Details
Chain | Address |
---|---|
Mainnet | 0xF526dC0D2B73488d32b58E55C17Cef5a53AD002A (opens in a new tab) |
Testnet | 0x6f021bF081840F96bdd90fd756b700072C7E68A5 (opens in a new tab) |
Oracle Configuration
Parameter | Value |
---|---|
Pricing Methodology | MAIR (opens in a new tab) |
Deviation (%) & Refresh Frequency | 0.5% and 120 seconds |
Heartbeat | 24h |
Asset Feeds
Mainnet
Asset Ticker | Adapter Address | Asset Markets Overview |
---|---|---|
WETH | 0xAdEfc2264c21A05D3f83bf7694438F81E119620B (opens in a new tab) | WETH markets (opens in a new tab) |
cbBTC | 0x7F760344c9Cde8DD342120FA0F908CE0Cd42B1E6 (opens in a new tab) | cbBTC markets (opens in a new tab) |
Testnet
Asset Ticker | Adapter Address | Asset Markets Overview |
---|---|---|
WETH | 0xA09A4e4297a06e284a4ACdf2Ca1F9998d5280F6e (opens in a new tab) | WETH markets (opens in a new tab) |
cbBTC | 0x61790e8F9bf02E4272E273F2615eD4fc7d8F95D9 (opens in a new tab) | cbBTC markets (opens in a new tab) |
How to Access Data
Accessing the oracle on-chain (Solidity)
To consume price data, you’ll need to invoke the getValue
method on the oracle contract which you can access through the DIA Oracle library (opens in a new tab) or the interface (opens in a new tab).
Below is an example of a contract consuming data from our oracle on Sepolia testnet. If you pass WETH/USD
as the key, it will return the most recent price of WETH in USD with 8 decimal places (e.g. 177101990135 is $1,771.01990135) along with the Unix timestamp of the last price update.
pragma solidity ^0.8.13;
interface IDIAOracleV2 {
function getValue(string memory) external view returns (uint128,
uint128);
}
contract DIAOracleSample {
address immutable ORACLE = 0x6f021bF081840F96bdd90fd756b700072C7E68A5;
function getPrice(string memory key)
external
view
returns (
uint128 latestPrice,
uint128 timestampOflatestPrice
) {
(latestPrice, timestampOflatestPrice) =
IDIAOracleV2(ORACLE).getValue(key);
}
}
See the full example here (opens in a new tab).
Adapter contracts
To consume price data from our oracle, you can use the adapter smart contract located above at the adapter address for each asset. This will allow you to access the same methods on the AggregatorV3Interface
such as getRoundData
& latestRoundData
. You can learn more here (opens in a new tab).
Support
For developer assistance, connect with the DIA team directly on Discord (opens in a new tab) or Telegram (opens in a new tab).
Developers seeking other specialized, production-grade oracle with tailored price feeds and configurations can initiate the request by contacting the DIA BD Team via Telegram (opens in a new tab).