Block
Block:
object
Header information of an ethereum block
Type declaration
baseFeePerGas?
optionalreadonlybaseFeePerGas:bigint
(Optional) The base fee per gas in the block, introduced in EIP-1559 for dynamic transaction fee calculation.
blobGasPrice?
optionalreadonlyblobGasPrice:bigint
The gas price for the block; may be undefined in blocks after EIP-1559.
coinbase
readonlycoinbase:Address
The address of the miner or validator who mined or validated the block.
difficulty
readonlydifficulty:bigint
The difficulty level of the block (relevant in PoW chains).
gasLimit
readonlygasLimit:bigint
The gas limit for the block, i.e., the maximum amount of gas that can be used by the transactions in the block.
number
readonlynumber:bigint
The block number (height) in the blockchain.
timestamp
readonlytimestamp:bigint
The timestamp at which the block was mined or validated.
Source
common/Block.ts:6