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

interface CommitSDKType {
    block_id: undefined | BlockIDSDKType;
    height: bigint;
    round: number;
    signatures: CommitSigSDKType[];
}

Properties

block_id: undefined | BlockIDSDKType
height: bigint
round: number
signatures: CommitSigSDKType[]