evx-sdk
Version:
The Evx SDK is a developer toolkit designed to simplify interaction with the Evx decentralized liquidity protocol. It provides an abstraction layer over the smart contracts, allowing developers to easily build applications, integrate liquidity pools, fetc
14 lines (13 loc) • 374 B
TypeScript
/**
* @notice Output of the get slot0 query
* @dev Contains the current slot0 state including sqrt price, tick, and observation data
*/
export interface IGetSlot0Output {
sqrtPriceX96: bigint;
tick: number;
observationIndex: number;
observationCardinality: number;
observationCardinalityNext: number;
feeProtocol: number;
unlocked: boolean;
}