Skip to main content
DIA is a cross-chain, trustless oracle network delivering verifiable price feeds for BOB. DIA sources raw trade data directly from primary markets and computes it onchain, ensuring complete transparency and data integrity.

Oracle Contracts

ChainContract Address
BOB Mainnet0x4d24e7c1cf0ed63bc8c6cb5a795af31fd8127c6b

Oracle Configuration

Pricing MethodologyVWAPIR
Deviation (%) & Refresh Frequency0.5% and 120 seconds
Heartbeat24h

Available Asset Feeds

Asset Price FeedAsset Markets
WBTC/USDWBTC Markets
tBTC/USDtBTC Markets
USDC/USDUSDC Markets
USDT/USDUSDT Markets
ETH/USDETH Markets
wstETH/USDwstETH Markets
eSOV/USDeSOV Markets

How to Access Data

getValue Method

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 or the interface. Below is an example of a contract consuming data from the BOB mainnet oracle. If you pass WBTC/USD as the key, it will return the most recent price of WBTC in USD with 8 decimal places (e.g. 9601458065403 is $96,014.58065403) 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 DIAOracleV2Consumer {

    address immutable ORACLE = 0x4d24e7c1cf0ed63bc8c6cb5a795af31fd8127c6b;

    function getPrice(string memory key)
    external
    view
    returns (
        uint128 latestPrice,
        uint128 timestampOfLatestPrice
    ) {
        (latestPrice, timestampOfLatestPrice) =
                 IDIAOracleV2(ORACLE).getValue(key);
    }
}
See the full example here.

Oracle Grants Program

The DIA Oracle Grants Program provides zero-cost oracle access for up to 1 year, covering deployment and update costs to accelerate dApp development on BOB Build on Bitcoin. Learn more about the grant here:

DIA Oracle Grants Program | Apply Now

Request a Custom Oracle

DIA offers highly customizable oracles that are individually tailored to each dApp’s needs. Each oracle can be customized in the following ways, including:
  • Data Sources & Asset Feeds
  • Pricing Methodologies
  • Update Triggers (Frequency, Deviation, Heartbeat, …etc)
Get a tailored oracle for your dApp, request one below:

Support

For developer assistance, connect with the DIA team directly on Discord or Telegram.