@swaptoshi/governance-module
Version:
Klayr governance on-chain module
8 lines (7 loc) • 458 B
TypeScript
import { Modules, StateMachine } from 'klayr-framework';
import { BoostVoteParams } from '../types';
export declare class BoostVoteCommand extends Modules.BaseCommand {
verify(_context: StateMachine.CommandVerifyContext<BoostVoteParams>): Promise<StateMachine.VerificationResult>;
execute(_context: StateMachine.CommandExecuteContext<BoostVoteParams>): Promise<void>;
schema: import("@swaptoshi/utils/dist/types").TypedSchema<BoostVoteParams>;
}