eth.beacon.slots
SQL table schema for eth.beacon.slots and eth.beacon.recent_slots
Ethereum Beacon table contains data about each slot in the Beacon Chain. More details.
Column Name | Data Type | Description |
---|---|---|
| DOUBLE | Index of slot |
| DOUBLE | The epoch in which the slot belongs. |
| BIGINT | The timestamp of the block that was produced in the slot. |
| DOUBLE | The index of the validator that proposed the block that was produced in the slot. |
| BOOLEAN | A boolean value indicating whether the slot was skipped. |
| CHARACTER VARYING | The root hash of the block that was produced in the slot. |
| CHARACTER VARYING | The root hash of the parent block of the block that was produced in the slot. |
| CHARACTER VARYING | The root hash of the state tree after the block that was produced in the slot was processed. |
| CHARACTER VARYING | The RANDAO reveal of the validator that proposed the block that was produced in the slot. |
| CHARACTER VARYING | An optional field that can be used to add a message to the block |
| CHARACTER VARYING | Hash of the ETH block containing the deposit contract |
| CHARACTER VARYING | The root hash of the deposits made to the beacon chain in the slot. |
| DOUBLE | The number of deposits that were made to the Beacon Chain in the slot. |
| CHARACTER VARYING | Signature of produced block |
| DOUBLE | Number of attestations for the selected block |
| DOUBLE | Count of deposits include d in the proposed block |
| DOUBLE | Count of proposer slashings in the proposed block |
| DOUBLE | Count of attester slashings in the proposed block |
| DOUBLE | Count of validators exiting the network |
| CHARACTER VARYING | Sync aggregate sync committee bits included in the proposed block. |
| CHARACTER VARYING | Sync aggregate sync committee signature included in the proposed block. |
| DOUBLE | Block number in the execution layer where the execution payload was included. |
| CHARACTER VARYING | Block hash in the execution layer where the execution payload was included. |
| DOUBLE | Count of BLS to execution changes in the proposed block. |
| DOUBLE | Count of withdrawals included in the proposed block |
| BIGINT | The amount of blob gas consumed by the transactions within the block (EIP-4844, since Cancun upgrade) |
| BIGINT | Running total of blob gas consumed in excess of the target, prior to the block (EIP-4844, since Cancun upgrade) |
| ARRAY | Represents hashes of KZG commitments associated with the EIP-4844 data (since Cancun upgrade) |
Last updated