HadisehFLOW Speed (redux) 5
Updated 2022-12-12
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with t1 as ( select date(block_timestamp) as date,
'Flow' as chain,
count(DISTINCT tx_id) as total_transaction,
total_transaction/86400 as per_second,
total_transaction/1440 as per_minute,
total_transaction/24 as per_hour
from flow.core.fact_transactions
where date >= '2022-01-01'
and TX_SUCCEEDED = 'TRUE'
group by date,chain)
,
t2 as ( select date(block_timestamp) as date,
'Polygon' as chain,
count(DISTINCT tx_hash) as total_transaction,
total_transaction/86400 as per_second,
total_transaction/1440 as per_minute,
total_transaction/24 as per_hour
from polygon.core.fact_transactions
where date >= '2022-01-01'
and STATUS = 'SUCCESS'
group by date,chain)
,
t3 as ( select date(block_timestamp) as date,
'Arbitrum' as chain,
count(DISTINCT tx_hash) as total_transaction,
total_transaction/86400 as per_second,
total_transaction/1440 as per_minute,
total_transaction/24 as per_hour
from arbitrum.core.fact_transactions
where date >= '2022-01-01'
and STATUS = 'SUCCESS'
group by date,chain)
,
t4 as ( select date(block_timestamp) as date,
'Optimism' as chain,
count(DISTINCT tx_hash) as total_transaction,
Run a query to Download Data