Table: t_block_summaries

Table Documentation: t_block_summaries

Summary:
The t_block_summaries table provides a summary of each block processed by the Beacon Chain, including information about attestations for the block, duplicate attestations, votes for the block, and the distance from its parent block.

Description:
This table is crucial for analyzing the efficiency and security of block proposals on the Beacon Chain. It includes metrics that can help identify the level of validator participation for each block and any inconsistencies in attestation inclusion.

Schema Overview

Column NameData TypeNullableDescription
f_slotINT64YESThe slot number of the block.
f_attestations_for_blockINT64YESThe number of attestations included in the block.
f_duplicate_attestations_for_blockINT64YESThe number of duplicate attestations for the block.
f_votes_for_blockINT64YESThe total number of votes (in terms of validator count) for the block.
f_parent_distanceINT64YESThe number of slots since the parent block (usually 1 in a healthy network).

Example SQL Query

SELECT *
FROM raw_beacon_chain.t_block_summaries
LIMIT 3;

Sample Query Result

f_slotf_attestations_for_blockf_duplicate_attestations_for_blockf_votes_for_blockf_parent_distance
74208642560449901
74217062560527951
74222772570515601

This sample result set shows a summary of the first three blocks, including the number of attestations for each block, any duplicate attestations, the total number of votes for the block, and the parent distance. These metrics are instrumental in understanding block propagation and validation dynamics within the network.