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

interface Vote {
    blockId?: BlockID;
    height: Long;
    round: number;
    signature: Uint8Array;
    timestamp?: Date;
    type: SignedMsgType;
    validatorAddress: Uint8Array;
    validatorIndex: number;
}

Properties

blockId?: BlockID

zero if vote is nil.

height: Long
round: number
signature: Uint8Array
timestamp?: Date
validatorAddress: Uint8Array
validatorIndex: number

Generated using TypeDoc