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) • 598 B
TypeScript
import { IBaseCommandParams } from './IBaseCommandParams';
import { VoteSupport } from '../../../enums/VoteSupport';
/**
* @notice Parameters for executing a cast vote with reason and params by signature operation on a governance proposal
* @dev Extends base command parameters with cast vote with reason and params by sig specific parameters
*/
export interface ICastVoteWithReasonAndParamsBySigCommandParams extends IBaseCommandParams {
proposalId: bigint;
support: VoteSupport;
voter: string;
reason: string;
params: string;
signature: string | Uint8Array | Buffer;
}