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

interface VoteSDKType {
    block_id: undefined | BlockIDSDKType;
    height: bigint;
    round: number;
    signature: Uint8Array;
    timestamp: undefined | Date;
    type: SignedMsgType;
    validator_address: Uint8Array;
    validator_index: number;
}

Properties

block_id: undefined | BlockIDSDKType
height: bigint
round: number
signature: Uint8Array
timestamp: undefined | Date
validator_address: Uint8Array
validator_index: number