Pinax Logo/Datasets
Beacon ChainBlobs

Column Descriptions

for eth_cl.blobs

9 rows
NameTypeDescription
block_numberNUMBERSequential number of the block in the blockchain containing this blob
kzg_commitmentTEXTKZG commitment for the blob, ensuring data integrity
kzg_proofTEXTKZG proof for the blob, used to verify the commitment
block_dateDATECalendar date associated with the block containing this blob
block_hashTEXTUnique identifier (hash) of the block containing this blob
blobTEXTEncoded representation of the blob's data
kzg_commitment_inclusion_proofARRAYList of proofs for inclusion of the KZG commitment in the block
indexNUMBERIndex of the blob within the block
block_timeTIMESTAMP_NTZTimestamp indicating when the block containing this blob was created

Sample Queries

Daily Blob Count
Calculates the total number of data blobs included in blocks each day.
SELECT
  block_date,
  COUNT(*) AS daily_blobs
FROM
  eth_cl.blobs
GROUP BY
  block_date
ORDER BY
  block_date;
Blocks with the Most Blobs
Identifies blocks that contain the highest number of data blobs.
SELECT
  block_hash,
  COUNT(*) AS blob_count
FROM
  eth_cl.blobs
GROUP BY
  block_hash
ORDER BY
  blob_count DESC
LIMIT
  10;
Blob Distribution by Block Number
Analyzes the distribution of blobs across different block numbers.
SELECT
  block_number,
  COUNT(index) AS blob_count
FROM
  eth_cl.blobs
GROUP BY
  block_number
ORDER BY
  blob_count DESC;