TRANSACTIONS | CONTRACTS | |
---|---|---|
1 | 45661 | 2040 |
Afonso_DiazTotal
Updated 2025-04-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
origin_from_address as user,
contract_address
from
mezo.testnet.fact_event_logs
where
tx_succeeded
)
select
count(distinct tx_hash) as transactions,
count(distinct contract_address) as contracts
from
main
Last run: 13 days ago
1
14B
2s