interface Block {
    evidence: readonly any[];
    header: Header;
    lastCommit: null | Commit;
    txs: readonly Uint8Array[];
}

Hierarchy (view full)

Properties

evidence: readonly any[]
header: Header
lastCommit: null | Commit

For the block at height 1, last commit is not set.

txs: readonly Uint8Array[]