@solana/web3.js
    Preparing search index...

    Type Alias ConfirmedBlock

    A confirmed block on the ledger

    Deprecated since RPC v1.8.0.

    type ConfirmedBlock = {
        blockhash: Blockhash;
        blockTime: number | null;
        parentSlot: number;
        previousBlockhash: Blockhash;
        rewards?: {
            commission?: number | null;
            lamports: number;
            postBalance: number | null;
            pubkey: string;
            rewardType: string | null;
        }[];
        transactions: {
            meta: ConfirmedTransactionMeta
            | null;
            transaction: Transaction;
        }[];
    }
    Index
    blockhash: Blockhash

    Blockhash of this block

    blockTime: number | null

    The unix timestamp of when the block was processed

    parentSlot: number

    Slot index of this block's parent

    previousBlockhash: Blockhash

    Blockhash of this block's parent

    rewards?: {
        commission?: number | null;
        lamports: number;
        postBalance: number | null;
        pubkey: string;
        rewardType: string | null;
    }[]

    Vector of block rewards

    transactions: {
        meta: ConfirmedTransactionMeta | null;
        transaction: Transaction;
    }[]

    Vector of transactions and status metas