Interface IEndorsementInfo

Represents the endorsement information.

Remarks

This interface is used to track the endorsement information, including the slot, index, endorsed block ID, signature, creator's public key, creator's address, and endorsement ID.

interface IEndorsementInfo {
    content: {
        endorsed_block: string;
        index: number;
        slot: ISlot;
    };
    creator_address: string;
    creator_public_key: string;
    id: string;
    signature: string;
}

Properties

content: {
    endorsed_block: string;
    index: number;
    slot: ISlot;
}

Type declaration

  • endorsed_block: string
  • index: number
  • slot: ISlot
creator_address: string
creator_public_key: string
id: string
signature: string

Generated using TypeDoc