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