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
A central directory that holds whitelisted oracle provider information and their proxies
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
Copy #[derive( Serialize , Deserialize , Clone , Debug , PartialEq , JsonSchema )]
pub struct InstantiateMsg {
pub owner : String ,
pub base_denom : String ,
pub max_proxies_per_symbol : u8 ,
}
Owner of Hub contract (Mirror Factory)
Token in which the price will be displayed
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.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubExecuteMsg {
UpdateOwner {
owner : String
},
Address of the owner to be changed to
Copy {
"update_owner" : {
"owner" : "terra1..."
}
}
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
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubExecuteMsg {
UpdateMaxProxies { max_proxies_per_symbol : u8 },
Max number of price sources that can be registered per mAsset
Copy {
"update_max_proxies" : {
"max_proxies_per_symbol" : 3
}
}
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.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubExecuteMsg {
RegisterSource {
symbol : String ,
proxy_addr : String ,
priority : Option < u8 >,
}
Symbol of the asset to register price source for
Address of the proxy contract through which the price is updated
Defines the priority for this price source over other existing ones
Copy {
"register_source" : {
"symbol" : "AAPL" ,
"proxy_addr" : "terra1..." ,
"priority" : 30
}
}
Symbol of the asset to register price source for
Address of the proxy contract through which the price is updated
Defines the priority for this price source over other existing ones
BulkRegisterSource
Registers multiple sources in one transaction.
Rust JSON
Copy #[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)
},
Symbol of the asset to register price source for
Address of the proxy contract which the price is updated in
Defines the priority of this price source over other existing ones for an asset
Copy {
"bulk_register_source" : {
"sources" : [
( "AAPL" , "terra1..." , 10 ) ,
( "GOOGL" , "terra1..." , 20 )
]
}
}
Symbol of the asset to register price source for
Address of the proxy contract which the price is updated in
Defines the priority of this price source over other existing ones for an asset
UpdateSourcePriorityList
Updates the priorities for proxies that are already registered
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubExecuteMsg {
UpdateSourcePriorityList {
symbol : String ,
priority_list : Vec <( String , u8 )>,
}
Symbol of the asset to change source priority for
Vector of Source address (String) and priority number (u8)
Copy {
"update_source_priority_list" : {
"symbol" : "AAPL" ,
"priority_list" : [
( "terra1..." , 10 ) ,
( "terra1..." , 20 )
]
}
}
Symbol of the asset to change source priority for
Vector of Source address (String) and priority number (u8)
RemoveSource
Removes a price source of a specified asset symbol from a proxy address.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubExecuteMsg {
RemoveSource {
symbol : String ,
proxy_addr : String
},
Symbol of the asset to remove price source from
The address of the proxy contract from which the price source is provided
Copy {
"remove_source" : {
"symbol" : "AAPL" ,
"proxy_addr" : "terra1..."
}
}
Symbol of the asset to remove price source from
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.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubExecuteMsg {
WhitelistProxy {
proxy_addr : String ,
provider_name : String ,
},
Address of the proxy contract to whitelist to Hub
Name to give to the newly whitelisted proxy
Copy {
"whitelist_proxy" : {
"proxy_addr" : "terra1..." ,
"provider_name" : "Band Protocol Feeder"
}
}
Address of the proxy contract to whitelist to Hub
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.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubExecuteMsg {
RemoveProxy {
proxy_addr : String
},
Address of the proxy to remove from Hub contract
Copy {
"remove_proxy" : {
"proxy_addr" : "terra1..."
}
}
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.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubExecuteMsg {
InsertAssetSymbolMap {
map : Vec <( String , String )>, // (address, symbol)
},
Address of the asset token contract
Symbol applied to the specified address
Copy {
"insert_asset_symbol_map" : {
"map" : [
( "terra1..." , "AAPL" ) ,
( "terra1..." , "GOOGL" )
]
}
}
Address of the asset token contract
Symbol applied to the specified address
QueryMsg
Config
Returns the configuration of the Oracle Hub contract
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubQueryMsg {
Config {},
Response
Copy #[derive( Serialize , Deserialize , Clone , Debug , PartialEq , JsonSchema )]
pub struct ConfigResponse {
pub owner : String ,
pub base_denom : String ,
pub max_proxies_per_symbol : u8 ,
}
Owner of oracle hub contract (Factory)
Base price denomination unit (UST)
Maximum number of proxies that can be registered to a symbol
Response
Copy {
"config_response" : {
"owner" : "terra1..." ,
"base_denom" : "uusd" ,
"max_proxies_per_symbol" : 2
}
}
Owner of oracle hub contract (Factory)
Base price denomination unit (UST)
Maximum number of proxies that can be registered to a symbol
ProxyWhitelist
Returns the list of whitelisted proxies / oracle providers.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubQueryMsg {
ProxyWhitelist {},
Response
Copy #[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 ,
}
Vector list of proxies whitelisted in Oracle Hub
Address of the whitelisted proxy
Name applied to the given proxy address
Copy {
"proxy_whitelist" : {}
}
Response
Copy {
"proxy_whitelist_response" : {
"proxies" : [
( "terra1..." , "Band Protocol Feeder" ) ,
( "terra1..." , "Band protocol Feeder" )
]
}
}
Vector list of proxies whitelisted in Oracle Hub
Address of the whitelisted proxy
Name applied to the given proxy address
AllSources
Returns the list of all symbols with all the sources
Rust JSON
Copy #[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 >,
},
Symbol of asset to start from
Max number of entries to return
Response
Copy #[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)
}
Vector list of price list entries
Vec<(u8, ProxyInfoResponse, PriceQueryResult)>
Returns a list of price priority (u8), proxy information and price results
Copy {
"all_sources" : {
"start_after" : "AAPL" ,
"limit" : 10
}
}
Symbol of asset to start from
Max number of entries to return
Sources
Returns the information all registered proxies for the provided asset_token.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubQueryMsg {
Sources { asset_token : String },
Address of the asset token to return responses for
Response
Copy #[derive( Serialize , Deserialize , Clone , Debug , PartialEq , JsonSchema )]
pub struct SourcesResponse {
pub symbol : String ,
pub proxies : Vec <( u8 , ProxyInfoResponse )>,
}
Vector list of price list entries
Vec<(u8, ProxyInfoResponse, PriceQueryResult)>
Returns a list of price priority (u8), proxy information and price results
Copy {
"sources" : {
"asset_token" : "terra1..."
}
}
Address of the asset token to return responses for
Response
Copy {
"sources_response" : {
"symbol" : "AAPL" ,
"proxies" : [
( 10 , "terra1..." , "Band Protocol Feeder" ) ,
( 10 , "terra1..." , "Band Protocol Feeder" )
]
}
}
Vector list of price list entries
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
.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubQueryMsg {
SourcesBySymbol { symbol : String },
Symbol of the asset to return source information for
Response
Copy #[derive( Serialize , Deserialize , Clone , Debug , PartialEq , JsonSchema )]
pub struct SourcesResponse {
pub symbol : String ,
pub proxies : Vec <( u8 , ProxyInfoResponse )>,
}
Symbol of the asset to return source information for
Vec<(u8, ProxyInfoResponse)>
Returns proxy priority (u8), and general proxy information
Copy {
"sources_by_symbol" : {
"symbol" : "AAPL"
}
}
Symbol of the asset to return source information for
Response
Copy {
"sources_response" : {
"symbol" : "AAPL" ,
"proxies" : [
( 10 , "terra1..." , "Band Protocol Feeder" )
]
}
}
Symbol of the asset to return source information for
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.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubQueryMsg {
Price {
asset_token : String ,
timeframe : Option < u64 >,
},
Address of the asset to query prices for
Optional field to enter timeframe of the asset's price to return
Response
Copy #[derive( Serialize , Deserialize , Clone , Debug , PartialEq , JsonSchema )]
pub struct PriceResponse {
pub rate : Decimal ,
pub last_updated : u64 ,
}
Price denominated in base_denom
Last updated time of the given asset's price
Copy {
"price" : {
"asset_token" : "terra1..." ,
"timeframe" : 23451234
}
}
Address of the asset to query prices for
Optional field to enter timeframe of the asset's price to return
Response
Copy {
"price_response" : {
"rate" : 142.123 ,
"last_updated" : 23451234
}
}
Price denominated in base_denom
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.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubQueryMsg {
PriceBySymbol {
symbol : String ,
timeframe : Option < u64 >,
},
Symbol of the asset to return price for (ex. AAPL)
Optional timeframe to return the price at
Response
Same as Price
QueryMsg
Copy {
"price_by_symbol" : {
"symbol" : "AAPL" ,
"timeframe" : 23451234
}
}
Symbol of the asset to return price for (ex. AAPL)
Optional timeframe to return the price at
Response
Same as Price
QueryMsg
PriceList
Returns all registered proxy prices for the provided asset_token
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubQueryMsg {
PriceList { asset_token : String },
Address of the asset token contract to return all available prices for
Response
Copy #[derive( Serialize , Deserialize , Clone , Debug , PartialEq , JsonSchema )]
pub struct PriceListResponse {
pub price_list : Vec <( u8 , ProxyInfoResponse , PriceQueryResult )>, // (priority, proxy_info, result)
}
Vec<(u8, ProxyInfoResponse, PriceQueryResult)>
Returns all proxy sources available for a given symbol asset, including priority, proxy information and price queries.
Copy {
"price_list" : {
"asset_token" : "terra1..."
}
}
Address of the token contract to return price list for
PriceListBySymbol
Returns all registered proxy prices for the provided asset_token
.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubQueryMsg {
PriceListBySymbol { symbol : String },
Symbol of the asset to return all price sources for
Response
Same as PriceList
Copy {
"price_list_by_symbol" : {
"symbol" : "AAPL"
}
}
Symbol of the asset to return all price sources for
Response
Same as PriceList
AssetSymbolMap
Returns the map of asset_token
to symbol
Rust JSON
Copy #[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 >,
},
Max number of entries to return
Response
Copy #[derive( Serialize , Deserialize , Clone , Debug , PartialEq , JsonSchema )]
pub struct AssetSymbolMapResponse {
pub map : Vec <( String , String )>, // address, symbol
}
Address of the proxy contract
Copy {
"asset_symbol_map" : {
"start_after" : "terra1..." ,
"limit" : 10
}
}
Max number of entries to return
Response
Copy {
"asset_symbol_map_response" : {
"map" : [
( "terra1..." , "AAPL" ) ,
( "terra1..." , "GOOGL" ) ,
...
]
}
}
Address of the proxy contract
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.
Rust JSON
Copy #[derive( Serialize , Deserialize , Clone , PartialEq , JsonSchema , Debug )]
#[serde(rename_all = "snake_case" )]
pub enum HubQueryMsg {
CheckSource { proxy_addr : String , symbol : String },
Address of the proxy contract
Response
Same as PriceResponse
or an Error
Copy {
"check_source" : {
"proxy_addr" : "terra1..." ,
"symbol" : "AAPL"
}
}
Response
Same as PriceResponse
or an Error