ro_sarkBerachain Comparison
Updated 2024-08-18
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
›
⌄
SELECT
date_trunc('day', block_timestamp) as date,
'Arbitrum' as chain,
count(distinct tx_hash) as tx_count,
count(distinct from_address) as unique_user_count,
tx_count / 86400 as tps
FROM arbitrum.core.fact_transactions
WHERE block_timestamp::date >= current_date - interval '90 day'
group by 1
union all
SELECT
date_trunc('day', block_timestamp) as date,
'Aurora' as chain,
count(distinct tx_hash) as tx_count,
count(distinct from_address) as unique_user_count,
tx_count / 86400 as tps
FROM aurora.core.fact_transactions
WHERE block_timestamp::date >= current_date - interval '90 day'
group by 1
union all
SELECT
date_trunc('day', block_timestamp) as date,
'Avalanche' as chain,
count(distinct tx_hash) as tx_count,
count(distinct from_address) as unique_user_count,
tx_count / 86400 as tps
FROM avalanche.core.fact_transactions
WHERE block_timestamp::date >= current_date - interval '90 day'
group by 1
union all
QueryRunArchived: QueryRun has been archived