Blocks

The beacon.raw.blocks table contains all the essential slot-level data on Beacon Chain. This includes the array of deposits, withdrawals, attestations and slashing in the slot.

Note: This table does not include missed or orphaned slots.

Table Columns

Column NameDescriptionExample

slot_number

Beacon Chain slot number.

6,367,076

slot_timestamp

Beacon Chain slot timestamp of the block.

2023-05-04 19:35:35

proposer_index

The index of validator in validator registry.

282,826

parent_root

The signing merkle root of the parent BeaconBlock

0x16439a50e6860491d66c60da24c2d1821c802b4f434975a5ebbbed93e3b386f3

state_root

The tree hash merkle root of the BeaconState for the BeaconBlock

0x26f7e096125cb9cc4f07eaaa83133f969c28403e5eb6a7ce1a0e68d8bdc1e3bd

randao_reveal

The block is invalid if this does not verify correctly against the proposer's public key. This is the block proposer's contribution to the beacon chain's randomness.

0xaba5e5a6d91a37bd3b0d6ba0b86256226e28ec6e5ba5b914668b38e7f817a8e7505575c8ba455cd5886bbdbfbe4aab2f0d45eee28fc411b18a22b68bd74b925a45d52dad3a0ed1c60898e1a82739ef73104700700e6a1d2902ef85b9dd31acdf

graffiti

Graffit is left free for the proposer to insert whatever data it wishes. It has no protocol level significance. Can be left as zero.

0x416c6c20496e2042616279000000000000000000000000000000000000000000

eth1_block_hash

The block hash of the Ethereum 1.0 block.

0xbe89ff462697b4d15a3d211f73e3d2438dfaf74f564f65fb34b8d8a0d7b87bc8

eth1_block_number

The block number of the Ethereum 1.0 block.

17,189,415

eth1_block_timestamp

The Unix timestamp of the Ethereum 1.0 block.

2023-05-04 19:35:35

eth1_deposit_count

The number of deposits in the deposit contract at this block.

646,887

eth1_deposit_root

The root of the (sparse) Merkle tree of deposits

0x78319ad06ac5c2651d378551db923df02fe7ff529a43286462d221842c65a38c

execution_payload

The execution payload (formerly known as an Eth1 block) contains a list of up to MAX_TRANSACTIONS_PER_PAYLOAD normal Ethereum transactions.

{ "base_fee_per_gas": "92115485870", "block_hash": "0xa708cb43deb62501a8e223fbf9ae4d2d330c074203d0d2211a655862b6fd6083", "block_number": "17189415", "extra_data": "0x6265617665726275696c642e6f7267", "fee_recipient": "0x95222290dd7278aa3ddd389cc1e1d165cc4bafe5", "gas_limit": "30000000", "gas_used": "13020591", .... [too long to display]

attester_slashings

Attester Slashings may be included in blocks to demonstrate that a group of validators has broken the rules and ought to be slashed. Proposers receive a reward for correctly submitting these.

[]

proposer_slashings

Array of proposer slashings in this slot.

[]

attestations

Attestations in this slot.

[too long to display]

deposits

Deposits made in this block.

[]

withdrawals

Withdrawals made in this block in array.

[ { "address": "0xf24a62e53ff9eeae8420e14ebdecdd61744d1bb1", "amount": "12481328", "index": "2472594", "validator_index": "281151" }, [too long to display]

signature

Signature data.

0xb091bfb476dc7f75a671195369f9978d99593ac6f47cbd16f72effe8a905bf69311b1bdf4cbc297c8558238abfdffdd4029d043b1b00ba7be40783bbafa4417bdb4d2428bc18cde38c6cde0ddfb6f50fc24ff490cc17c88bd1e0a3ee92d9b3bb

_updated_at

Timestamp of the block data update.

2023-05-05 02:03:32.612 +0000

Last updated