Type alias BlockSignatures

BlockSignatures: {
    blockTime: number | null;
    blockhash: Blockhash;
    parentSlot: number;
    previousBlockhash: Blockhash;
    signatures: string[];
}

A Block on the ledger with signatures only

Type declaration

  • blockTime: number | null

    The unix timestamp of when the block was processed

  • blockhash: Blockhash

    Blockhash of this block

  • parentSlot: number

    Slot index of this block's parent

  • previousBlockhash: Blockhash

    Blockhash of this block's parent

  • signatures: string[]

    Vector of signatures

Generated using TypeDoc