Afonso_DiazMost Active Contracts
Updated 2025-02-21
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_to_address as contract_address,
origin_from_address as user
from
monad.testnet.fact_event_logs
where
tx_succeeded
and block_timestamp >= '2025-02-19'
)
select
contract_address,
count(tx_hash) as tx_count
from main
group by contract_address
order by tx_count desc
limit 10
QueryRunArchived: QueryRun has been archived