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

15 lines (14 loc) 665 B
import { IInitializeOnlyPoolCommandParams } from '../../interfaces/commands/params/IInitializePoolCommandParams'; import { IBaseCommand } from '../../interfaces/commands/IBaseCommand'; /** * @title Initialize Pool Command * @notice Initializes a pool with the given price * @dev This command interacts with the PoolContract to initialize the pool */ export declare class InitializePoolCommand implements IBaseCommand<IInitializeOnlyPoolCommandParams, void> { /** * @notice Executes the initialize pool command * @param params The parameters for initializing the pool */ execute(params: IInitializeOnlyPoolCommandParams): Promise<void>; }