nooschain / chain/block / Block
Interface: Block
Defined in: chain/block.ts:70
The complete block structure, including the block header, the computed block hash, and an array of transaction references that are included in the block. The block hash is computed based on the block header and serves as a unique identifier for the block, ensuring the integrity and immutability of the blockchain.
Properties
hash
hash:
string
Defined in: chain/block.ts:72
header
header:
BlockHeader
Defined in: chain/block.ts:71
stateRoot
stateRoot:
string|null
Defined in: chain/block.ts:73
transactions
transactions:
BlockTransactionReference[]
Defined in: chain/block.ts:74