Table: t_attester_slashings

Table Documentation: t_attester_slashings

Summary:
The t_attester_slashings table captures data about attester slashings that occur on the Beacon Chain. Attester slashings are penalties applied to validators who sign conflicting attestations.

Description:
This table includes details about the slashing event, such as inclusion data, information about the attestations that were in conflict, and signatures that prove the slashing condition. This information is crucial for tracking validator behavior and ensuring the security of the network.

Schema Overview

Column NameData TypeNullableDescription
f_inclusion_slotINT64YESSlot number where the slashing was included
f_inclusion_block_rootSTRINGYESRoot of the block including the slashing
f_inclusion_indexINT64YESIndex of the inclusion within the block
f_attestation_1_indicesSTRINGYESIndices of validators from the first attestation
f_attestation_1_slotINT64YESSlot of the first attestation
f_attestation_1_committee_indexINT64YESCommittee index for the first attestation
f_attestation_1_beacon_block_rootSTRINGYESBeacon block root for the first attestation
f_attestation_1_source_epochINT64YESSource epoch for the first attestation
f_attestation_1_source_rootSTRINGYESSource root for the first attestation
f_attestation_1_target_epochINT64YESTarget epoch for the first attestation
f_attestation_1_target_rootSTRINGYESTarget root for the first attestation
f_attestation_1_signatureSTRINGYESSignature of the first attestation
f_attestation_2_indicesSTRINGYESIndices of validators from the second attestation
f_attestation_2_slotINT64YESSlot of the second attestation
f_attestation_2_committee_indexINT64YESCommittee index for the second attestation
f_attestation_2_beacon_block_rootSTRINGYESBeacon block root for the second attestation
f_attestation_2_source_epochINT64YESSource epoch for the second attestation
f_attestation_2_source_rootSTRINGYESSource root for the second attestation
f_attestation_2_target_epochINT64YESTarget epoch for the second attestation
f_attestation_2_target_rootSTRINGYESTarget root for the second attestation
f_attestation_2_signatureSTRINGYESSignature of the second attestation

Example SQL Query

SELECT * 
FROM raw_beacon_chain.t_attester_slashings
LIMIT 3;

Sample Query Result

Note: The above output is a truncated representation of the actual query result. The data shown includes the inclusion slot, block root, index, and a list of validators involved in the first conflicting attestation. The actual query will return complete data including both conflicting attestations and their signatures.