Interface IBlockHeaderInfo

Represents the information for a block header.

Remarks

This interface is used to track the block header information, including the slot, parent blocks, operation merkle root, and endorsements.

interface IBlockHeaderInfo {
    endorsements: IEndorsementInfo[];
    operation_merkle_root: string;
    parents: string[];
    slot: ISlot;
}

Properties

endorsements: IEndorsementInfo[]
operation_merkle_root: string
parents: string[]
slot: ISlot

Generated using TypeDoc