Interface IBlockcliqueBlockBySlot

Represents a block in a blockclique by slot.

Remarks

This interface is used to track the block information in a blockclique, including the block header, signature, creator's public key, creator's address, block ID, and operations.

interface IBlockcliqueBlockBySlot {
    header: {
        content: IBlockHeaderInfo;
        creator_address: string;
        creator_public_key: string;
        id: string;
        signature: string;
    };
    operations: string[];
}

Properties

Properties

header: {
    content: IBlockHeaderInfo;
    creator_address: string;
    creator_public_key: string;
    id: string;
    signature: string;
}

Type declaration

  • content: IBlockHeaderInfo
  • creator_address: string
  • creator_public_key: string
  • id: string
  • signature: string
operations: string[]

Generated using TypeDoc