IDataStorageOperator

Events

FeeConfiguration

event FeeConfiguration(struct AdaptiveFee.Configuration feeConfig)

NameTypeDescription
feeConfigstruct AdaptiveFee.Configuration

Functions

timepoints

function timepoints(uint256 index) external view returns (bool initialized, uint32 blockTimestamp, int56 tickCumulative, uint160 secondsPerLiquidityCumulative, uint88 volatilityCumulative, int24 averageTick, uint144 volumePerLiquidityCumulative) view external

Returns data belonging to a certain timepoint Developer note: There is more convenient function to fetch a timepoint: getTimepoints(). Which requires not an index but seconds

NameTypeDescription
indexuint256The index of timepoint in the array

Returns:

NameTypeDescription
initializedboolWhether the timepoint has been initialized and the values are safe to use, blockTimestamp The timestamp of the observation, tickCumulative The tick multiplied by seconds elapsed for the life of the pool as of the timepoint timestamp, secondsPerLiquidityCumulative The seconds per in range liquidity for the life of the pool as of the timepoint timestamp, volatilityCumulative Cumulative standard deviation for the life of the pool as of the timepoint timestamp, averageTick Time-weighted average tick, volumePerLiquidityCumulative Cumulative swap volume per liquidity for the life of the pool as of the timepoint timestamp
blockTimestampuint32
tickCumulativeint56
secondsPerLiquidityCumulativeuint160
volatilityCumulativeuint88
averageTickint24
volumePerLiquidityCumulativeuint144

initialize

function initialize(uint32 time, int24 tick) external external

Initialize the dataStorage array by writing the first slot. Called once for the lifecycle of the timepoints array

NameTypeDescription
timeuint32The time of the dataStorage initialization, via block.timestamp truncated to uint32
tickint24Initial tick

getSingleTimepoint

function getSingleTimepoint(uint32 time, uint32 secondsAgo, int24 tick, uint16 index, uint128 liquidity) external view returns (int56 tickCumulative, uint160 secondsPerLiquidityCumulative, uint112 volatilityCumulative, uint256 volumePerAvgLiquidity) view external

Developer note: Reverts if an timepoint at or before the desired timepoint timestamp does not exist. 0 may be passed as `secondsAgo' to return the current cumulative values. If called with a timestamp falling between two timepoints, returns the counterfactual accumulator values at exactly the timestamp between the two timepoints.

NameTypeDescription
timeuint32The current block timestamp
secondsAgouint32The amount of time to look back, in seconds, at which point to return an timepoint
tickint24The current tick
indexuint16The index of the timepoint that was most recently written to the timepoints array
liquidityuint128The current in-range pool liquidity

Returns:

NameTypeDescription
tickCumulativeint56The cumulative tick since the pool was first initialized, as of `secondsAgo`
secondsPerLiquidityCumulativeuint160The cumulative seconds / max(1, liquidity) since the pool was first initialized, as of `secondsAgo`
volatilityCumulativeuint112The cumulative volatility value since the pool was first initialized, as of `secondsAgo`
volumePerAvgLiquidityuint256The cumulative volume per liquidity value since the pool was first initialized, as of `secondsAgo`

getTimepoints

function getTimepoints(uint32 time, uint32[] secondsAgos, int24 tick, uint16 index, uint128 liquidity) external view returns (int56[] tickCumulatives, uint160[] secondsPerLiquidityCumulatives, uint112[] volatilityCumulatives, uint256[] volumePerAvgLiquiditys) view external

Returns the accumulator values as of each time seconds ago from the given time in the array of `secondsAgos` Developer note: Reverts if `secondsAgos` > oldest timepoint

NameTypeDescription
timeuint32The current block.timestamp
secondsAgosuint32[]Each amount of time to look back, in seconds, at which point to return an timepoint
tickint24The current tick
indexuint16The index of the timepoint that was most recently written to the timepoints array
liquidityuint128The current in-range pool liquidity

Returns:

NameTypeDescription
tickCumulativesint56[]The cumulative tick since the pool was first initialized, as of each `secondsAgo`
secondsPerLiquidityCumulativesuint160[]The cumulative seconds / max(1, liquidity) since the pool was first initialized, as of each `secondsAgo`
volatilityCumulativesuint112[]The cumulative volatility values since the pool was first initialized, as of each `secondsAgo`
volumePerAvgLiquiditysuint256[]The cumulative volume per liquidity values since the pool was first initialized, as of each `secondsAgo`

getAverages

function getAverages(uint32 time, int24 tick, uint16 index, uint128 liquidity) external view returns (uint112 TWVolatilityAverage, uint256 TWVolumePerLiqAverage) view external

Returns average volatility in the range from time-WINDOW to time

NameTypeDescription
timeuint32The current block.timestamp
tickint24The current tick
indexuint16The index of the timepoint that was most recently written to the timepoints array
liquidityuint128The current in-range pool liquidity

Returns:

NameTypeDescription
TWVolatilityAverageuint112The average volatility in the recent range
TWVolumePerLiqAverageuint256The average volume per liquidity in the recent range

write

function write(uint16 index, uint32 blockTimestamp, int24 tick, uint128 liquidity, uint128 volumePerLiquidity) external returns (uint16 indexUpdated) external

Writes an dataStorage timepoint to the array Developer note: Writable at most once per block. Index represents the most recently written element. index must be tracked externally.

NameTypeDescription
indexuint16The index of the timepoint that was most recently written to the timepoints array
blockTimestampuint32The timestamp of the new timepoint
tickint24The active tick at the time of the new timepoint
liquidityuint128The total in-range liquidity at the time of the new timepoint
volumePerLiquidityuint128The gmean(volumes)/liquidity at the time of the new timepoint

Returns:

NameTypeDescription
indexUpdateduint16The new index of the most recently written element in the dataStorage array

changeFeeConfiguration

function changeFeeConfiguration(struct AdaptiveFee.Configuration feeConfig) external external

Changes fee configuration for the pool

NameTypeDescription
feeConfigstruct AdaptiveFee.Configuration

calculateVolumePerLiquidity

function calculateVolumePerLiquidity(uint128 liquidity, int256 amount0, int256 amount1) external pure returns (uint128 volumePerLiquidity) pure external

Calculates gmean(volume/liquidity) for block

NameTypeDescription
liquidityuint128The current in-range pool liquidity
amount0int256Total amount of swapped token0
amount1int256Total amount of swapped token1

Returns:

NameTypeDescription
volumePerLiquidityuint128gmean(volume/liquidity) capped by 100000 << 64

window

function window() external view returns (uint32 windowLength) view external

Returns:

NameTypeDescription
windowLengthuint32Length of window used to calculate averages

getFee

function getFee(uint32 time, int24 tick, uint16 index, uint128 liquidity) external view returns (uint16 fee) view external

Calculates fee based on combination of sigmoids

NameTypeDescription
timeuint32The current block.timestamp
tickint24The current tick
indexuint16The index of the timepoint that was most recently written to the timepoints array
liquidityuint128The current in-range pool liquidity

Returns:

NameTypeDescription
feeuint16The fee in hundredths of a bip, i.e. 1e-6