WeightedOracleLibrary
Provides functions to integrate with different tier oracles of the same V3 pair
Functions
consult
Fetches a time-weighted observation for a given Uniswap V3 pool
Parameters:
pool
address
Address of the pool that we want to observe
period
uint32
Number of seconds in the past to start calculating the time-weighted observation
Return Values:
observation
address
An observation that has been time-weighted from (block.timestamp - period) to block.timestamp
getArithmeticMeanTickWeightedByLiquidity
Given some time-weighted observations, calculates the arithmetic mean tick, weighted by liquidity
In most scenarios, each entry of observations
should share the same period
and underlying pool
tokens. If period
differs across observations, the result becomes difficult to interpret and is likely biased/manipulable. If the underlying pool
tokens differ across observations, extreme care must be taken to ensure that both prices and liquidity values are comparable. Even if prices are commensurate (e.g. two different USD-stable assets against ETH), liquidity values may not be, as decimals can differ between tokens.
Parameters:
observations
struct WeightedOracleLibrary.PeriodObservation[]
A list of time-weighted observations
Return Values:
arithmeticMeanWeightedTick
struct WeightedOracleLibrary.PeriodObservation[]
The arithmetic mean tick, weighted by the observations' time-weighted harmonic average liquidity
Last updated