bachimiso3
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
›
⌄
with ethereum_users as (
select
date(block_timestamp) as day,
count(distinct origin_from_address) as no_of_users
from
ethereum.core.fact_event_logs
where
topics[0] = lower(
'0x077511a636ba1f10551cc7b89c13ff66a6ac9344e8a917527817a9690b15af7a'
)
and tx_status = 'SUCCESS'
group by
day
order by
day desc
),
arbitrum_users as (
select
date(block_timestamp) as day,
count(distinct origin_from_address) as no_of_users
from
arbitrum.core.fact_event_logs
where
topics[0] = lower(
'0x077511a636ba1f10551cc7b89c13ff66a6ac9344e8a917527817a9690b15af7a'
)
and tx_status = 'SUCCESS'
group by
1
),
polygon_users as (
select
date(block_timestamp) as day,
count(distinct origin_from_address) as no_of_users
from
polygon.core.fact_event_logs
Run a query to Download Data