Description of the base.blocks table on Dune
The base.blocks
table contains information about blocks in the base blockchain. A block is a collection of transactions that are hashed and added to the blockchain. Each block contains a reference to the previous block, known as the parent hash, and a timestamp. The table contains information about each block, such as the block number, the block hash, the block size, the number of transactions, and the gas used.
SELECT
number,
hash,
size,
gas_used
FROM base.blocks
ORDER BY number DESC
LIMIT 10
SELECT
date_trunc('day', time) AS day,
count(distinct number)
FROM base.blocks
GROUP BY day
ORDER BY day DESC
SELECT
number,
count(*)
FROM base.blocks
GROUP BY 1
LIMIT 10
Description of the base.blocks table on Dune
The base.blocks
table contains information about blocks in the base blockchain. A block is a collection of transactions that are hashed and added to the blockchain. Each block contains a reference to the previous block, known as the parent hash, and a timestamp. The table contains information about each block, such as the block number, the block hash, the block size, the number of transactions, and the gas used.
SELECT
number,
hash,
size,
gas_used
FROM base.blocks
ORDER BY number DESC
LIMIT 10
SELECT
date_trunc('day', time) AS day,
count(distinct number)
FROM base.blocks
GROUP BY day
ORDER BY day DESC
SELECT
number,
count(*)
FROM base.blocks
GROUP BY 1
LIMIT 10