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) 281 B
import { IBaseQueryParams } from '@interfaces'; /** * @notice Parameters for getting the slot0 information of a pool * @dev Contains the pool address to query the current slot0 state */ export interface IGetSlot0QueryParams extends IBaseQueryParams { poolAddress: string; }