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
18 lines (17 loc) • 757 B
TypeScript
import { IMintCommandParams } from '../../interfaces/commands/params/IMintCommandParams';
import { IBaseCommand } from '../../interfaces/commands/IBaseCommand';
import { PositionManagerContract } from '@contracts';
/**
* @title Mint Command
* @notice Creates a new position by providing liquidity to a pool
* @dev This command interacts with the PositionManager contract to mint a new position
*/
export declare class MintCommand implements IBaseCommand<IMintCommandParams, void> {
private readonly positionManager;
constructor(positionManager: PositionManagerContract);
/**
* @notice Executes the mint command
* @param params The parameters for minting a position
*/
execute(params: IMintCommandParams): Promise<void>;
}