messariAtlas - Comp Txns
Updated 2024-01-04
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
›
⌄
SELECT * FROM (
(select
block_timestamp::date as date,
'ETH' as chain,
count(*) as txns
from ethereum.core.fact_transactions
group by 1, 2)
UNION
(select
block_timestamp::date as date,
'NEAR' as chain,
count(*) as txns
from near.core.fact_transactions
group by 1, 2)
UNION
(select
block_timestamp::date as date,
'POLYGON' as chain,
count(*) as txns
from polygon.core.fact_transactions
group by 1, 2)
) as combined_results
ORDER BY date DESC;
QueryRunArchived: QueryRun has been archived