UNPKG

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) 841 B
import { ICastVoteBySigCommandParams } from '../../interfaces/commands/params/ICastVoteBySigCommandParams'; import { IBaseCommand } from '../../interfaces/commands/IBaseCommand'; import { GovernanceContract } from '@contracts'; /** * @title Cast Vote By Sig Command * @notice Executes a cast vote by signature operation on a governance proposal * @dev This command interacts with the Governance contract to cast a vote by signature */ export declare class CastVoteBySigCommand implements IBaseCommand<ICastVoteBySigCommandParams, void> { private readonly governance; constructor(governance: GovernanceContract); /** * @notice Executes the cast vote by sig command * @param params The parameters for executing the cast vote by sig operation */ execute(params: ICastVoteBySigCommandParams): Promise<void>; }