TeFi Oracle

The TeFi oracle is a set of smart contracts that support price oracles used across multiple DeFi protocols built on top of Terra blockchain, providing an interface for accessing the latest reported prices for the assets provided by its whitelisted oracle services. Price quotes are kept up-to-date by oracle providers that fetch exchange rates for real-world assets from reputable sources.

On the Mirror Protocol, these prices are used for CDP operations (mint, burn, short, deposit, withdraw) while the price feed is active. Prices are considered stale when there is no new valid price for 60 seconds.

Smart Contracts

ContractFunction

Hub

A central directory that holds whitelisted oracle provider information and their proxies

Proxy

Storage of price information maintained by the oracle provider

Hub

The Hub contract is a central directory for all oracle price providers and their proxies. On the Mirror Protocol, the Hub contract is owned by the Mirror Governance contract, and transactions can only be called through Mirror’s governance consensus.

Through the interaction with the Hub contract, the following actions can happen:

  • Whitelisting a new oracle service provider

  • Registering new price sources on an existing proxy

  • Removing and changing priorities of already existing prices

InstantiateMsg

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct InstantiateMsg {
    pub owner: String,
    pub base_denom: String,
    pub max_proxies_per_symbol: u8,
}
KeyTypeDescription

owner

String

Owner of Hub contract (Mirror Factory)

base_denom

String

Token in which the price will be displayed

max_proxies_per_symbol

u8

Number of sources that can be registered to a single mAsset

ExecuteMsg

All Oracle Hub contract operations can be only called by owner - Mirror Factory, which is owned by Mirror Governance.

UpdateOwner

Operation to update owner of the Hub contract.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubExecuteMsg {
UpdateOwner { 
    owner: String 
    },
KeyTypeDescription

owner

String

Address of the owner to be changed to

UpdateMaxProxies

Operation used to update the maximum number of price sources that can be registered per mAsset

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubExecuteMsg {
	UpdateMaxProxies { max_proxies_per_symbol: u8 },
KeyTypeDescription

max_proxies_per_symbol

u8

Max number of price sources that can be registered per mAsset

RegisterSource

The operation used to register a new price source for an asset. Source can only be registered once a proxy is whitelisted to the Hub contract through the WhitelistProxy operation.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubExecuteMsg {
	RegisterSource {
        symbol: String,
        proxy_addr: String,
        priority: Option<u8>,
    }
KeyTypeDescription

symbol

String

Symbol of the asset to register price source for

proxy_addr

String

Address of the proxy contract through which the price is updated

priority

u8

Defines the priority for this price source over other existing ones

BulkRegisterSource

Registers multiple sources in one transaction.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubExecuteMsg {
	BulkRegisterSource {
        sources: Vec<(String, String, Option<u8>)>, // (symbol, proxy_addr, priority)
    },
KeyTypeDescription

symbol

String

Symbol of the asset to register price source for

proxy_addr

String

Address of the proxy contract which the price is updated in

priority

u8

Defines the priority of this price source over other existing ones for an asset

UpdateSourcePriorityList

Updates the priorities for proxies that are already registered

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubExecuteMsg {
	UpdateSourcePriorityList {
        symbol: String,
        priority_list: Vec<(String, u8)>,
    }
KeyTypeDescription

symbol

String

Symbol of the asset to change source priority for

priority_list

Vec<(String, u8)>

Vector of Source address (String) and priority number (u8)

RemoveSource

Removes a price source of a specified asset symbol from a proxy address.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubExecuteMsg {
	RemoveSource { 
		symbol: String, 
		proxy_addr: String 
},
KeyTypeDescription

symbol

String

Symbol of the asset to remove price source from

proxy_addr

String

The address of the proxy contract from which the price source is provided

WhitelistProxy

Whitelists a new proxy contract as a price source. After the proxy is whitelisted, it can be registered as a source.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubExecuteMsg {
	WhitelistProxy {
        proxy_addr: String,
        provider_name: String,
    },
KeyTypeDescription

proxy_addr

String

Address of the proxy contract to whitelist to Hub

provider_name

String

Name to give to the newly whitelisted proxy

RemoveProxy

Removes a whitelisted proxy contract entirely from the Hub contract. This is different from RemoveSource which only removes a single price of an asset, instead of removing the entire set of prices from the proxy.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubExecuteMsg {
	RemoveProxy { 
		proxy_addr: String
},
KeyTypeDescription

proxy_addr

String

Address of the proxy to remove from Hub contract

InsertAssetSymbolMap

Updates the map of asset_token to symbol. Asset mapping storage is overwritten by this operation if it already exists.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubExecuteMsg {
	InsertAssetSymbolMap {
        map: Vec<(String, String)>, // (address, symbol)
    },
KeyTypeDescription

address

String

Address of the asset token contract

symbol

String

Symbol applied to the specified address

QueryMsg

Config

Returns the configuration of the Oracle Hub contract

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubQueryMsg {
    Config {},

Response

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct ConfigResponse {
    pub owner: String,
    pub base_denom: String,
    pub max_proxies_per_symbol: u8,
}
KeyTypeDescription

owner

String

Owner of oracle hub contract (Factory)

base_denom

String

Base price denomination unit (UST)

max_proxies_per_symbol

u8

Maximum number of proxies that can be registered to a symbol

ProxyWhitelist

Returns the list of whitelisted proxies / oracle providers.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubQueryMsg {
    ProxyWhitelist {},

Response

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct ProxyWhitelistResponse {
    pub proxies: Vec<ProxyInfoResponse>,
}

//ProxyInfoResponse
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct ProxyInfoResponse {
    pub address: String,
    pub provider_name: String,
}
KeyTypeDescription

proxies

Vec<ProxyInfoResponse>

Vector list of proxies whitelisted in Oracle Hub

address

String

Address of the whitelisted proxy

provider_name

String

Name applied to the given proxy address

AllSources

Returns the list of all symbols with all the sources

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubQueryMsg {
        AllSources {
        start_after: Option<String>, // symbol for pagination
        limit: Option<u32>,
    },
KeyTypeDescription

start_after

String

Symbol of asset to start from

limit

u32

Max number of entries to return

Response

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct AllSourcesResponse {
    pub list: Vec<SourcesResponse>,
}

//SourceResponse
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct PriceListResponse {
    pub price_list: Vec<(u8, ProxyInfoResponse, PriceQueryResult)>, // (priority, proxy_info, result)
}
KeyTypeDescription

list

Vec<SourceResponse>

Vector list of price list entries

price_list

Vec<(u8, ProxyInfoResponse, PriceQueryResult)>

Returns a list of price priority (u8), proxy information and price results

Sources

Returns the information all registered proxies for the provided asset_token.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubQueryMsg {
    Sources { asset_token: String },
KeyTypeDescription

asset_token

String

Address of the asset token to return responses for

Response

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct SourcesResponse {
    pub symbol: String,
    pub proxies: Vec<(u8, ProxyInfoResponse)>,
}
KeyTypeDescription

list

Vec<SourceResponse>

Vector list of price list entries

price_list

Vec<(u8, ProxyInfoResponse, PriceQueryResult)>

Returns a list of price priority (u8), proxy information and price results

SourcesBySymbol

Returns the information of all registered proxies for a provided asset_token.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubQueryMsg {
    SourcesBySymbol { symbol: String },
KeyTypeDescription

symbol

String

Symbol of the asset to return source information for

Response

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct SourcesResponse {
    pub symbol: String,
    pub proxies: Vec<(u8, ProxyInfoResponse)>,
}
KeyTypeDescription

symbol

String

Symbol of the asset to return source information for

proxies

Vec<(u8, ProxyInfoResponse)>

Returns proxy priority (u8), and general proxy information

Price

Queries the highest priority available price within the timeframe. If timeframe is not provided, the age of the price will be ignored.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubQueryMsg {
    Price {
        asset_token: String,
        timeframe: Option<u64>,
    },
KeyTypeDescription

asset_token

String

Address of the asset to query prices for

timeframe

Option<u64>

Optional field to enter timeframe of the asset's price to return

Response

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct PriceResponse {
    pub rate: Decimal,
    pub last_updated: u64,
}
KeyTypeDescription

rate

Decimal

Price denominated in base_denom

last_updated

u64

Last updated time of the given asset's price

PriceBySymbol

Returns the highest priority available price within the time frame, using the symbol instead of the asset token address. If timeframe is not provided, it will be ignored.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubQueryMsg {
        PriceBySymbol {
        symbol: String,
        timeframe: Option<u64>,
    },
KeyTypeDescription

symbol

String

Symbol of the asset to return price for (ex. AAPL)

timeframe

u64

Optional timeframe to return the price at

Response

Same as Price QueryMsg

PriceList

Returns all registered proxy prices for the provided asset_token

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubQueryMsg {
    PriceList { asset_token: String },
KeyTypeDescription

asset_token

String

Address of the asset token contract to return all available prices for

Response

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct PriceListResponse {
    pub price_list: Vec<(u8, ProxyInfoResponse, PriceQueryResult)>, // (priority, proxy_info, result)
}
KeyTypeDescription

price_list

Vec<(u8, ProxyInfoResponse, PriceQueryResult)>

Returns all proxy sources available for a given symbol asset, including priority, proxy information and price queries.

PriceListBySymbol

Returns all registered proxy prices for the provided asset_token.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubQueryMsg {
    PriceListBySymbol { symbol: String },
KeyTypeDescription

symbol

String

Symbol of the asset to return all price sources for

Response

Same as PriceList

AssetSymbolMap

Returns the map of asset_token to symbol

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubQueryMsg {
    AssetSymbolMap {
        start_after: Option<String>, // address for pagination
        limit: Option<u32>,
    },
KeyTypeDescription

start_after

String

Address for pagination

limit

u32

Max number of entries to return

Response

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct AssetSymbolMapResponse {
    pub map: Vec<(String, String)>, // address, symbol
}
KeyTypeDescription

address

String

Address of the proxy contract

symbol

String

Symbol of the asset

CheckSource

Check to see if proxy_addr is whitelisted and has price feed for the specified symbol. Returns the PriceResponse or error to check if the price feed is valid or not.

#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)]
#[serde(rename_all = "snake_case")]
pub enum HubQueryMsg {
    CheckSource { proxy_addr: String, symbol: String },
KeyTypeDescription

proxy_addr

String

Address of the proxy contract

symbol

String

Symbol of the asset

Response

Same as PriceResponse or an Error

Last updated