> ## Documentation Index
> Fetch the complete documentation index at: https://www.diadata.org/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Wanchain

> dApps built on Wanchain can leverage DIA oracles to access up-to-date asset price information.

[DIA](https://diadata.org/) 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.

| Chain   | Address                                                                                                                     |
| :------ | :-------------------------------------------------------------------------------------------------------------------------- |
| Mainnet | [<u>0x6f1791F0350AAe4f096f0cAdcF2d25Cd28191895</u>](https://wanscan.org/address/0x6f1791F0350AAe4f096f0cAdcF2d25Cd28191895) |

## Oracle Configuration

|                   |      |
| :---------------- | :--- |
| **Deviation (%)** | None |
| **Heartbeat**     | 2h   |

## Available Asset Feeds

### Mainnet

| Asset Ticker | Asset Query Key | Asset Markets                                                                                                |
| :----------- | :-------------- | :----------------------------------------------------------------------------------------------------------- |
| BTC          | BTC/USD         | [BTC markets](https://www.diadata.org/app/price/asset/Bitcoin/0x0000000000000000000000000000000000000000/)   |
| ETH          | ETH/USD         | [ETH markets](https://www.diadata.org/app/price/asset/Ethereum/0x0000000000000000000000000000000000000000/)  |
| USDC         | USDC/USD        | [USDC markets](https://www.diadata.org/app/price/asset/Ethereum/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/) |

## How to Access Data

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](https://www.diadata.org/docs/guides/how-to-guides/fetch-price-data/solidity#using-solidity-library) or the [interface](https://www.diadata.org/docs/guides/how-to-guides/fetch-price-data/solidity#using-diaoraclev2-interface).

Below is an example of a contract consuming data from the oracle on Wanchain Mainnet using the **IDIAOracleV2 i**nterface. If you pass `BTC/USD` as the key, it will return the most recent price of BTC in USD with **18 decimal places** (e.g. 64036673405438220304384 is \$64,036.67) along with the Unix timestamp of the last price update.

```text theme={"system"}
pragma solidity 0.8.29;

interface IDIAOracleV2 {
    function getValue(string memory) external view returns (uint128, uint128);
}

contract DIAOracleV2Consumer{

    address immutable ORACLE = 0x6f1791F0350AAe4f096f0cAdcF2d25Cd28191895;

    function getPrice(string memory key) 
    external 
    view
    returns (
        uint128 latestPrice, 
        uint128 timestampOflatestPrice
    ) {
        (latestPrice, timestampOflatestPrice) =   
                 IDIAOracleV2(ORACLE).getValue(key); 
    }
}
```

## 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:

<CardGroup>
  <Card title="Request Custom Oracle" icon="angle-right" iconType="solid" horizontal href="/docs/guides/how-to-guides/request-a-custom-oracle" />
</CardGroup>

## Support

For developer assistance, connect with the DIA team directly on [Discord](https://discord.gg/ZvGjVY5uvs) or [Telegram](https://t.me/diadata_org).
