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

interface Vote {
    option: VoteOption;
    options: WeightedVoteOption[];
    proposalId: bigint;
    voter: string;
}

Properties

option: VoteOption

Since: cosmos-sdk 0.43

proposalId: bigint
voter: string