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) • 804 B
TypeScript
import { IEnableFeeAmountCommandParams } from '../../interfaces/commands/params/IEnableFeeAmountCommandParams';
import { IBaseCommand } from '../../interfaces/commands/IBaseCommand';
import { FactoryContract } from '@contracts';
/**
* @title Enable Fee Amount Command
* @notice Enables a fee amount with its corresponding tick spacing
* @dev This command interacts with the Factory contract to enable a fee amount
*/
export declare class EnableFeeAmountCommand implements IBaseCommand<IEnableFeeAmountCommandParams, void> {
private readonly factory;
constructor(factory: FactoryContract);
/**
* @notice Executes the enable fee amount command
* @param params The parameters for enabling the fee amount
*/
execute(params: IEnableFeeAmountCommandParams): Promise<void>;
}