PriceFeedDouble
Returns the price of an asset considering two different Chainlink price feeds.
Written as a generic implementation it can be used, for example, to retrieve the price of WBTC
. Queries BTC/ ETH
feed and multiplies it by the exchange rate between WBTC / BTC
before returning the price that itโs then used by the Auditor.
Public State Variables
baseUnit
The base units are used to normalize the answer when multiplied by the second price feed rate.
decimals
Number of decimals that the answer of this price feed has.
priceFeedOne
Main price feed where the price is fetched from.
priceFeedTwo
Second price feed where the asset's rate is fetched from.
View Methods
latestAnswer
Returns the price feed's latest value considering the other price feed's rate.
Last updated