UNPKG

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

9 lines (8 loc) 249 B
/** * @notice Output of the get ticks from price range query * @dev Contains the calculated tick lower and tick upper values from the price range */ export interface IGetTicksFromPriceRangeOutput { tickLower: number; tickUpper: number; }