interface IEndorsement { endorsement: { content: { endorsed_block: string; index: number; sender_public_key: string; slot: ISlot; }; signature: string; }; id: string; in_blocks: string[]; in_pool: boolean; is_final: boolean; } Properties
endorsement
endorsement: { content: { endorsed_block: string; index: number; sender_public_key: string; slot: ISlot; }; signature: string; } Type declaration
content: {
endorsed_block: string;
index: number;
sender_public_key: string;
slot: ISlot;
}
endorsed_block: string
index: number
sender_public_key: string
signature: string
in_blocks
in_blocks: string[]
is_final
is_final: boolean
Represents an endorsement.
See
stringrepresents the ID of the endorsement.booleanrepresents whether the endorsement is in the mempool.Array<string>represents the IDs of the blocks that contain the endorsement.booleanrepresents whether the endorsement is final.objectrepresents the endorsement:objectrepresents the content of the endorsementstringrepresents the public key of the sender of the endorsement.ISlotrepresents the time slot when the endorsement was created.numberrepresents the index of the endorsement inside the slot.stringrepresents the ID of the block that was endorsed.stringrepresents the signature of the endorsement by its sender public key.