Vote represents a prevote, precommit, or commit vote from validators for consensus.

interface VoteAmino {
    block_id?: BlockIDAmino;
    height?: string;
    round?: number;
    signature?: string;
    timestamp?: string;
    type?: SignedMsgType;
    validator_address?: string;
    validator_index?: number;
}

Properties

block_id?: BlockIDAmino

zero if vote is nil.

height?: string
round?: number
signature?: string
timestamp?: string
validator_address?: string
validator_index?: number