MLDZMNgno4
Updated 2022-10-17Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
select
date_trunc('day', minute) as day,
max (count_txn) as TPM_MAX,
min (count_txn) as TPM_MIN,
avg (count_txn) as TPM_Average
from (
select
date_trunc('minute', block_timestamp) as minute,
count(tx_hash) as count_txn
from polygon.core.fact_transactions
WHERE tx_hash is not null
group by 1
)
group by 1
Run a query to Download Data