Queries
getTokenAddresses
/// @notice Return token addresses of the Vault
function getTokenAddresses() external view returns (address[2] memory)getLstParams
/// @notice Returns the LP parameters
/// @return The array of LP parameters
function getLstParams() external view returns (LstParam[] memory)struct LstParam {
/// upperTick of the Knockout position
int24 upperTick;
/// lowerTick of the Knockout position
int24 lowerTick;
/// pivot time of the Knockout position
uint32 pivot;
}getLpWeights
getPosition
getAllPositions
getPositions
totalAssets
currentTick
previewDeposit
previewWithdraw
convertToShares
convertToAssets
Last updated