Bring any data on-chain
Cryptoeconomic
Secure connection
To the real world
Build Without Blockers
Build securely anything you want, with no limitations
Any asset
Mango Oracle supports secure price feeds for assets faster than competitors. Mango Oracle has the deepest price discovery and most advanced pricing methodology of any blockchain oracle.
Any use case
Build lending,   staking protocols effortlessly. Mango Oracle supports all data consumption models: use Push blockchainoracle and beyond
Easily integrate
Mango Oracles
in your smart contracts
Oracles
Native Randomness
1
2
3
4
5
6
7
8
9
10
11
12

 module oracle_call::call {
    use oracle::data_source;
    use oracle::data_source::OracleFeedGroup;
    use mgo::tx_context::TxContext;

    public fun get_price_by_feed_group(feed_group: &OracleFeedGroup,full_name: vector<u8>, _: &TxContext) { 
        let (price , decimals , last_update_time) = data_source::price(feedGroup, full_name);
        // TODO: Use or return the price data as needed in your application.
    }
}