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) • 776 B
TypeScript
import { IProposeCommandParams } from '../../interfaces/commands/params/IProposeCommandParams';
import { IBaseCommand } from '../../interfaces/commands/IBaseCommand';
import { GovernanceContract } from '@contracts';
/**
* @title Propose Command
* @notice Executes a propose operation on a governance proposal
* @dev This command interacts with the Governance contract to propose a new governance action
*/
export declare class ProposeCommand implements IBaseCommand<IProposeCommandParams, void> {
private readonly governance;
constructor(governance: GovernanceContract);
/**
* @notice Executes the propose command
* @param params The parameters for executing the propose operation
*/
execute(params: IProposeCommandParams): Promise<void>;
}