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

12 lines (11 loc) 292 B
/** * @notice Output of the get pool query * @dev Contains pool information including token addresses, fee tier, and configuration */ export interface IGetPoolOutput { token0: string; token1: string; feeTier: bigint; tickSpacing: bigint; maxLiquidityPerTick: bigint; }