Commit contains the evidence that a block was committed by a set of validators.

interface Commit {
    blockId: undefined | BlockID;
    height: bigint;
    round: number;
    signatures: CommitSig[];
}

Properties

blockId: undefined | BlockID
height: bigint
round: number
signatures: CommitSig[]