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

13 lines (12 loc) 417 B
import { BigNumberish } from 'ethers'; import { IBaseCommandParams } from './IBaseCommandParams'; /** * @notice Parameters for collecting fees from a position * @dev Extends base command parameters with collect specific parameters */ export interface ICollectCommandParams extends IBaseCommandParams { tokenId: BigNumberish; recipient: string; amount0Max: BigNumberish; amount1Max: BigNumberish; }