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
20 lines (19 loc) • 571 B
TypeScript
import { BigNumberish } from 'ethers';
import { IBaseCommandParams } from './IBaseCommandParams';
/**
* @notice Parameters for minting a new position
* @dev Extends base command parameters with minting specific parameters
*/
export interface IMintCommandParams extends IBaseCommandParams {
token0: string;
token1: string;
fee: number;
tickLower: number;
tickUpper: number;
amount0Desired: BigNumberish;
amount1Desired: BigNumberish;
amount0Min: BigNumberish;
amount1Min: BigNumberish;
recipient: string;
deadline: number;
}