Gets the number of blocks produced each month.
Typical query time: 1-2 second
SELECT DATE_TRUNC('month', TO_TIMESTAMP("timestamp")) AS "month", COUNT(*) AS block_count FROM btc.blocks GROUP BY "month" ORDER BY "month" DESC
Last updated 1 year ago