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) • 896 B
TypeScript
import { IUpdateQuorumNumeratorCommandParams } from '../../interfaces/commands/params/IUpdateQuorumNumeratorCommandParams';
import { IBaseCommand } from '../../interfaces/commands/IBaseCommand';
import { GovernanceContract } from '@contracts';
/**
* @title Update Quorum Numerator Command
* @notice Executes an update quorum numerator operation in governance
* @dev This command interacts with the Governance contract to update the quorum numerator
*/
export declare class UpdateQuorumNumeratorCommand implements IBaseCommand<IUpdateQuorumNumeratorCommandParams, void> {
private readonly governance;
constructor(governance: GovernanceContract);
/**
* @notice Executes the update quorum numerator command
* @param params The parameters for executing the update quorum numerator operation
*/
execute(params: IUpdateQuorumNumeratorCommandParams): Promise<void>;
}