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

19 lines (18 loc) 450 B
/** * @notice Output for the get position query * @dev Contains all the position data returned by the contract */ export interface IGetPositionOutput { nonce: bigint; operator: string; token0: string; token1: string; fee: number; tickLower: number; tickUpper: number; liquidity: bigint; feeGrowthInside0LastX128: bigint; feeGrowthInside1LastX128: bigint; tokensOwed0: bigint; tokensOwed1: bigint; }