cloudr3nAvax Users on other chains
Updated 2023-09-16
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
›
⌄
-- compare mau vs other evm chains
with
avax as (
select
date_trunc('month',block_timestamp) as month, from_address, count(distinct tx_hash)
FROM
avalanche.core.fact_transactions
group by month, from_address
),
arbi as (
select
date_trunc('month',block_timestamp) as month, from_address, count(distinct tx_hash), 'arbi' as arbi
FROM
arbitrum.core.fact_transactions
group by month, from_address
),
opti as (
select
date_trunc('month',block_timestamp) as month, from_address, count(distinct tx_hash), 'opti' as opti
FROM
optimism.core.fact_transactions
group by month, from_address
),
poly as (
select
date_trunc('month',block_timestamp) as month, from_address, count(distinct tx_hash), 'poly' as poly
FROM
polygon.core.fact_transactions
group by month, from_address
),
bsc as (
Run a query to Download Data