Moetps
Updated 2023-09-10
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
date(block_timestamp) as date,
'SEI' as network,
count(distinct tx_id) as tx_count,
tx_count/86400 as tps,
tx_count/24 as tph,
tx_count/1440 as tpm
from SEI.core.fact_transactions
where block_timestamp::date >= '2023-08-15'
group by 1
union ALL
select
date(block_timestamp) as date,
'Optimism' as network,
count(distinct tx_hash) as tx_count,
tx_count/86400 as tps,
tx_count/24 as tph,
tx_count/1440 as tpm
from Optimism.core.fact_transactions
where block_timestamp::date >= '2023-08-15'
group by 1
union ALL
select
Run a query to Download Data