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
string
represents the ID of the endorsement.boolean
represents whether the endorsement is in the mempool.Array<string>
represents the IDs of the blocks that contain the endorsement.boolean
represents whether the endorsement is final.object
represents the endorsement:object
represents the content of the endorsementstring
represents the public key of the sender of the endorsement.ISlot
represents the time slot when the endorsement was created.number
represents the index of the endorsement inside the slot.string
represents the ID of the block that was endorsed.string
represents the signature of the endorsement by its sender public key.