Updated 2023-08-29
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 tx as (
select
date_trunc('month',block_timestamp) as month
,'ETH' as chain
,count(*) as tx
from ethereum.core.fact_transactions
group by 1,2
union all
select
date_trunc('month',block_timestamp) as month
,'Arbitrum' as chain
,count(*) as tx
from arbitrum.core.fact_transactions
group by 1,2
union all
select
date_trunc('month',block_timestamp) as month
,'Aurora' as chain
,count(*) as tx
from aurora.core.fact_transactions
group by 1,2
union all
select
date_trunc('month',block_timestamp) as month
,'Avax' as chain
,count(*) as tx
from avalanche.core.fact_transactions
group by 1,2
union all
select
date_trunc('month',block_timestamp) as month
,'Axelar' as chain
Run a query to Download Data