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

interface VoteAmino {
    option?: VoteOption;
    options?: WeightedVoteOptionAmino[];
    proposal_id?: string;
    voter?: string;
}

Properties

option?: VoteOption

Since: cosmos-sdk 0.43

proposal_id?: string
voter?: string