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
9 lines (8 loc) • 335 B
TypeScript
import { IBaseCommandParams } from './IBaseCommandParams';
/**
* @notice Parameters for updating the quorum numerator in governance
* @dev Extends base command parameters with quorum numerator specific parameters
*/
export interface IUpdateQuorumNumeratorCommandParams extends IBaseCommandParams {
newQuorumNumerator: bigint;
}