kiacryptoMonthly average number of transactions per minutes
Updated 2022-12-10Copy Reference Fork
999
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 flow_tpm as (
select
date_trunc('minutes', block_timestamp) as minutes,
count(distinct tx_id) as tx_per_min
from flow.core.fact_transactions
where block_timestamp >= '2022-01-01'
group by 1
),
bsc_tpm as (
select
date_trunc('minutes', block_timestamp) as minutes,
count(distinct tx_hash) as tx_per_min
from bsc.core.fact_transactions
where block_timestamp >= '2022-01-01'
group by 1
),
eth_tpm as (
select
date_trunc('minutes', block_timestamp) as minutes,
count(distinct tx_hash) as tx_per_min
from Ethereum.core.fact_transactions
where block_timestamp >= '2022-01-01'
group by 1
),
avax_tpm as (
select
date_trunc('minutes', block_timestamp) as minutes,
count(distinct tx_hash) as tx_per_min
from avalanche.core.fact_transactions
where block_timestamp >= '2022-01-01'
group by 1
),
algo_tpm as (
select
date_trunc('minutes', block_timestamp) as minutes,
count(distinct tx_id) as tx_per_min
Run a query to Download Data