Vote defines a vote on a governance proposal. A Vote consists of a proposal ID, the voter, and the vote option.

interface VoteSDKType {
    option: VoteOption;
    options: WeightedVoteOptionSDKType[];
    proposal_id: bigint;
    voter: string;
}

Properties

option: VoteOption
proposal_id: bigint
voter: string