interface BlockObject {
    baseFeePerGas?: string;
    blobGasUsed?: string;
    difficulty?: string;
    excessBlobGas?: string;
    extraData: string;
    gasLimit: string;
    gasUsed: string;
    hash: string;
    logsBloom: string;
    miner: string;
    mixHash: string;
    nonce: string;
    number: string;
    parentBeaconBlockRoot?: string;
    parentHash: string;
    receiptsRoot: string;
    sha3Uncles: string;
    size: string;
    stateRoot: string;
    timestamp: string;
    totalDifficulty?: string;
    transactions: TransactionHashes | FullTransactions;
    transactionsRoot: string;
    uncles: Uncles;
    withdrawals?: Withdrawals;
    withdrawalsRoot?: string;
}

Properties

baseFeePerGas?: string
blobGasUsed?: string
difficulty?: string
excessBlobGas?: string
extraData: string
gasLimit: string
gasUsed: string
hash: string
logsBloom: string
miner: string
mixHash: string
nonce: string
number: string
parentBeaconBlockRoot?: string
parentHash: string
receiptsRoot: string
sha3Uncles: string
size: string
stateRoot: string
timestamp: string
totalDifficulty?: string
transactionsRoot: string
uncles: Uncles
withdrawals?: Withdrawals
withdrawalsRoot?: string