Moe2 MSO
Updated 2022-09-19
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
'AVALANCHE' as network,
count (distinct origin_from_address) as num_wallets,
count (distinct tx_hash) as num_txs
from
avalanche.core.fact_event_logs
where origin_to_address in
(select
distinct event_inputs:addr
from
avalanche.core.fact_event_logs
where event_name = 'MarketCreated'
and origin_to_address = '0x438a2b1c6c715fb1b051c04ca65755560d8b8d43')
union all
select
'POLYGON' as network,
count (distinct origin_from_address) as num_wallets,
count (distinct tx_hash) as num_txs
from
POLYGON.core.fact_event_logs
where origin_to_address in
(select
distinct event_inputs:addr
from
POLYGON.core.fact_event_logs
where event_name = 'MarketCreated'
and origin_to_address = '0xc040f84cf7046409f92d578ef9040fe45e6ef4be')
union all
select
'ARBITRUM' as network,
count (distinct origin_from_address) as num_wallets,
count (distinct tx_hash) as num_txs
Run a query to Download Data