N_TXS | N_USER | |
---|---|---|
1 | 1516386 | 545721 |
0xHaM-dOverview ttl
Updated 2025-05-23
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
with EventTb as (
select
block_timestamp,
tx_hash,
sender as user,
from aptos.core.fact_events
JOIN aptos.core.fact_transactions using(block_timestamp, tx_hash)
where payload_function ilike '0x111ae3e5bc816a5e63c2da97d0aa3886519e0cd5e4b046659fa35796bd11542a%'
)
select
count(DISTINCT tx_hash) as n_txs,
count(DISTINCT user) as n_user,
from EventTb
Last run: 15 days ago
1
18B
267s