zakkisyedBlast L2 Transcations
Updated 2024-03-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
WITH hourly_transactions AS (
SELECT
date_trunc('hour', block_timestamp) AS hour,
COUNT(distinct tx_hash) AS total_transactions
FROM
blast.core.fact_transactions
GROUP BY
hour
),
cumulative_transactions AS (
SELECT
hour,
total_transactions,
SUM(total_transactions) OVER (ORDER BY hour) AS cumulative_total_transactions
FROM
hourly_transactions
)
SELECT * FROM cumulative_transactions
ORDER BY hour desc;
Auto-refreshes every 12 hours
QueryRunArchived: QueryRun has been archived