Push Oracle
Quick Start: Supra Price Feeds
Supra's Push oracle publishes price pairs on-chain regularly and at high frequencies, enabling consumers to get near real-time prices for their smart contracts. The Push oracle functions via partnerships Supra has with respective chains to share, ensuring that frequent feed updates are available for these destination chains without interruption. Both the Push model and Pull model (on demand) have the same number of data pairs offered by Supra.
Integrating with Supra price feeds is quick and easy. The price feed value published by Supra is known as an S-Value (aka Supra Value). In the following sections, we will demonstrate how to retrieve an S-Value using Supra's Push model.
Please refer to the below resources for a better understanding of our price feeds.
Data Feeds - This explains how Supra calculates the S-value for an asset.
Data Feeds Index - This provides a list of data pairs currently offered by Supra.
Available Networks - This is a list of available networks and Supra contract addresses.
Important: Please make sure you read and understand Terms of Use before start using Supra products and services.
Let's begin!
Step 1: Create the S-value interface
Import the interface from the DORA Interface (https://github.com/Entropy-Foundation/dora-interface) Git repository, and add the subdirectory Testnet you to use for integration.
Step 2: Configure the S-value feed dependency
Create your project and add the below dependencies in your Move.toml
Testnet
[dependencies]
core = { git = "https://github.com/Entropy-Foundation/dora-interface", subdir = "supra/testnet/core", rev = "master" }Mainnet
[dependencies]
core = { git = "https://github.com/Entropy-Foundation/dora-interface", subdir = "supra/mainnet/core", rev = "master" }Step 3: Request S-values for data feeds
Now you can easily request S-values of any supported data pairs.
Import :
supra_oracle::supra_oracle_storage
use aptos_std::table::{Self, Table};
use supra_oracle::supra_oracle_storage;Add the following structs
struct PriceConfiguration has key {
feeds: Table<u32, PriceStrategy>,
}
struct PriceStrategy has store, copy, drop {
high: u128,
low: u128,
start_time: u64,
end_time: u64,
}PriceConfiguration is the main resource structure for this module. It has a `feeds` map that stores the price strategy feeds. &#xNAN;PriceStrategy represents a strategy feed entry with high, low, start time, and end time.
Next, add the `init_module function below:
This initializes the PriceConfiguration with an empty feeds vector map. Then, it shares this resource.
Add the
set_high_lowfunction. This function sets the high and low price of a specific pair in the PriceConfiguration. If the pair already exists, it updates the existing PriceStrategy; if not, it inserts a new PriceStrategy.
Add the following
check_price_strategyfunction to retrieve Strategic Price of one pair between an interval. This public view function fetches the strategic price for a single pair thats been updated by the above functionset_high_low.
To retrieve a S-value for multiple pairs you can design a public view function
get_pair_price_sumthat fetches prices for multiple pairs from the oracle, adds them and returns the sum.
Derived Pairs - Convert a data pair to any currency with ease
There have been many requests to provide functionality convert the prices to USD. While we take data directly from exchange quoted pairs mostly in stable coins (USDT/USDC), conversion at our end adds more latency and extra layer of margin for error. (*The oracle services who provide USD prices are already converting the USDT prices at their backend with previously mentioned disadvantages of that method). Still, for those who are in need we provide that as a custom function to convert and derive any pair using operators of Multiplication(parameter=0) or Division(Parameter=1).
Import supra_oracle::supra_oracle_storage dependency:
Next, add the `init_module function below:
Add the following get_update_derived_price function to retrieve S-value for the derived pair. This public entry function fetches the price for a derived pair from the supra_oracle_storage module and emits an event for the Derived Pair Feed.
From the above code:
pair: a pair index number from which you want to retrieve the price value
pairs: Index numbers of multiple pairs from which you want to retrieve the price value
Tada! You now have a method in your Smart Contract that you can call at any time to retrieve the price of the selected pair.
\
Step 1: Create The S-Value Interface
In the first step, you need to build data structures to receive the data feeds and functions required to fetch data into configured data structures. You may add the following code to the Solidity smart contract that you wish to retrieve the S-Value.
The above code creates the interface that you will later apply in order to fetch a price from SupraOracles.
Step 2: Configure The S-Value Feed Address
Next, in order to retrieve the S-Value, configure the S-Value feed using the Supra Smart Contract address as demonstrated below. The Supra contract for each network can be found in our network addresses list, and the address used in the example below needs to be replaced.
Step 3: Get The S-Value Crypto Price
Now you can access the S-Values for any of the trading pairs Supra publishes. THe below sample code retrieves S-value for single as well as multiple data pairs for demonstration purposes. You may use it as appropriate.
Recommended Best Practices: Create a function with access control that updates the sValueFeed using the function _updateSupraSvalueFeed()_.
This will allow you to update the address of the Supra storage contract after deployment to future-proof your contract. Access control is mandatory to prevent the undesired modification of the address.
Example Implementation:
Here's an example of what your implementation should look like:
Step 1: Create the S-value interface
Import the interface from the DORA Interface (https://github.com/Entropy-Foundation/dora-interface) Git repository, and add the subdirectory Mainnet or Testnet you would like to use for integration.
Step 2: Configure the S-value feed dependency
Create your project and add the below dependencies in your Move.toml
Testnet
Mainnet
Step 3: Request S-values for data feeds
Now you can easily request S-values of any supported data pairs.
Import Sui dependency in:
client_example/sources/push_client.move
Add the following structs to:
client_example/sources/push_client.move
ExampleHolder is the main resource struct for this module. It has a unique identifier `id` and a `feeds` map that stores the price feeds.
ExampleEntry represents a price feed entry with a value, decimal, timestamp, and round.
Next, add the `init function below:
This initializes the ExampleHolder with a new ID and an empty feeds vector map. Then, it shares this resource.
Add the `update_price` function. This Updates the price of a specific pair in the ExampleHolder. If the pair already exists, it updates the existing ExampleEntry; if not, it inserts a new ExampleEntry.
Add the following `get_update_price` function to retrieve S-value for one pair. This is a public entry function that fetches the price for a single pair from the oracle and updates the corresponding entry in the ExampleHolder.
If you want to retrieve a S-value for multiple pairs you need to add `get_update_prices` which is a public entry function that fetches prices for multiple pairs from the oracle and updates the corresponding entries in the ExampleHolder.
The typical usage of this module starts with initializing an ExampleHolder using the init function. The ExampleHolder is then updated with price information using the update_price function, which can be manually called or called through get_update_prices or get_update_price, which also fetch the price data from the oracle.
Please note that you need an instance of OracleHolder to use get_update_prices and get_update_price. These are public entry functions that can be called from external modules or scripts.
Derived Pairs - Convert a data pair to any currency with ease
There have been many requests to provide functionality convert the prices to USD. While we take data directly from exchange quoted pairs mostly in stable coins (USDT/USDC), conversion at our end adds more latency and extra layer of margin for error. (*The oracle services who provide USD prices are already converting the USDT prices at their backend with previously mentioned disadvantages of that method). Still, for those who are in need we provide that as a custom function to convert and derive any pair using operators of Multiplication(parameter=0) or Division(Parameter=1).
Import supra_holder::derived_pair dependency in:
client_example/sources/derived_pair_client.moveAdd the following `get_update_derived_price` function to retrieve S-value for derived pair. This is a public entry function that fetches the price for a single derived pair from the oracle and updates the corresponding entry in the ExampleHolder.
\
Note: You might need to use --skip-dependency-verification flag to publish your smart contract
From the above code:
OracleHolder: a resource that contains oracle pricepair: a pair number which you want to retrieve the price value
Tada! You now have a method in your smart contract that you can call at any time to retrieve the prices of selected asset pairs.
Last updated
