Interface ConsensusBlockMetadata

BlockMetadata contains additional metadata related to the executing block.

The metadata is included in the form of a special transaction where this structure is the transaction body.

interface ConsensusBlockMetadata {
    events_root: Uint8Array;
    state_root: Uint8Array;
}

Properties

events_root: Uint8Array

EventsRoot is the provable events root.

state_root: Uint8Array

StateRoot is the state root after executing all logic in the block.