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
15 lines (14 loc) • 508 B
TypeScript
import { BigNumberish } from 'ethers';
import { IBaseCommandParams } from './IBaseCommandParams';
/**
* @notice Parameters for increasing liquidity in a position
* @dev Extends base command parameters with liquidity increase specific parameters
*/
export interface IIncreaseLiquidityCommandParams extends IBaseCommandParams {
tokenId: BigNumberish;
amount0Desired: BigNumberish;
amount1Desired: BigNumberish;
amount0Min: BigNumberish;
amount1Min: BigNumberish;
deadline: number;
}