Afonso_DiazTop Projects Interacted with $ALOT
Updated 2025-03-11
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
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
label_type,
origin_from_address as user,
project_name
from
avalanche.core.fact_event_logs
join
avalanche.core.dim_labels on address = origin_to_address
where
contract_address = '0x093783055f9047c2bff99c4e414501f8a147bc69'
and tx_status = 'SUCCESS'
and label_type != 'token'
and label_subtype != 'token_contract'
)
select
project_name,
count(distinct tx_hash) as transactions,
iff(count(distinct user) < 5, '-', count(distinct user)::string) as users
from
main
group by 1
order by 2 desc
limit 10
QueryRunArchived: QueryRun has been archived