Afonso_DiazTop Contracts
Updated 2025-04-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
origin_from_address as user,
contract_address
from
boba.core.fact_event_logs
)
select
contract_address,
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