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
11 lines (10 loc) • 364 B
TypeScript
import { IBaseQueryParams } from '@interfaces';
/**
* @notice Parameters for the get ticks from price range query
* @dev Contains the pool address and sqrt prices in X96 format to convert to ticks
*/
export interface IGetTicksFromPriceRangeQueryParams extends IBaseQueryParams {
pool: string;
sqrtPriceLowerX96: bigint;
sqrtPriceUpperX96: bigint;
}