Pinax Logo/Datasets
WAXBlocks

Column Descriptions

for wax.blocks

25 rows
NameTypeDescription
numberNUMBER
schedule_versionNUMBER
failed_transactionsNUMBER
confirmedNUMBER
timeTIMESTAMP_NTZ
successful_transactionsNUMBER
transaction_mrootTEXT
blockroot_merkle_active_nodesARRAY
producerTEXT
action_mroot_savannaTEXT
blockroot_merkle_node_countNUMBER
total_actionsNUMBER
dpos_irreversible_blocknumNUMBER
total_transactionsNUMBER
hashTEXT
producer_signatureTEXT
parent_hashTEXT
dateDATE
sizeNUMBER
versionNUMBER
dpos_proposed_irreversible_blocknumNUMBER
total_db_opsNUMBER
action_mrootTEXT
block_signing_keyTEXT
confirm_countARRAY

Sample Queries

Average Block Size Over Time
Calculates the average block size per day
SELECT
  date,
  AVG(size) AS average_block_size
FROM
  wax.blocks
GROUP BY
  date
ORDER BY
  date;
Find Blocks Produced by a Specific Producer
Retrieves all blocks produced by a specific block producer
SELECT
  *
FROM
  wax.blocks
WHERE
  producer = 'eoseouldotio';
Blocks with Highest Transaction Count
Identifies the blocks with the highest number of total transactions
SELECT
  hash,
  total_transactions
FROM
  wax.blocks
ORDER BY
  total_transactions DESC
LIMIT
  10;