interface Block {
    header: BlockHeader;
    id: string;
    txs: readonly Uint8Array[];
}

Properties

Properties

header: BlockHeader
id: string

The ID is a hash of the block header (uppercase hex)

txs: readonly Uint8Array[]

Array of raw transactions

Generated using TypeDoc