elsinaDaily Transaction Count
Updated 2022-12-11
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
›
⌄
select 'FLOW' as chain,
date_trunc (day,block_timestamp) as date,
count(tx_id) as "Daily TX Count",
sum("Daily TX Count") over(order by date) as "Cumulative TX Count",
"Daily TX Count"/1440 as "Transactions Per Minute (TPM)",
"Daily TX Count"/86400 as "Transactions Per Second (TPS)"
from flow.core.fact_transactions
where block_timestamp >= '2022-01-01' and block_timestamp::date != CURRENT_DATE and tx_succeeded = 'TRUE'
group by 1,2
union ALL
select 'BSC' as chain,
date_trunc (day,block_timestamp) as date,
count(tx_hash) as "Daily TX Count",
sum("Daily TX Count") over(order by date) as "Cumulative TX Count",
"Daily TX Count"/1440 as "Transactions Per Minute (TPM)",
"Daily TX Count"/86400 as "Transactions Per Second (TPS)"
from bsc.core.fact_transactions
where block_timestamp >= '2022-01-01' and block_timestamp::date != CURRENT_DATE and status = 'SUCCESS'
group by 1,2
union ALL
select 'Ethereum' as chain,
date_trunc (day,block_timestamp) as date,
count(tx_hash) as "Daily TX Count",
sum("Daily TX Count") over(order by date) as "Cumulative TX Count",
"Daily TX Count"/1440 as "Transactions Per Minute (TPM)",
"Daily TX Count"/86400 as "Transactions Per Second (TPS)"
from ethereum.core.fact_transactions
where block_timestamp >= '2022-01-01' and block_timestamp::date != CURRENT_DATE and status = 'SUCCESS'
group by 1,2
union ALL
Run a query to Download Data