0xHaM-dOverview ttl
    Updated 2025-05-23
    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
    N_TXS
    N_USER
    1
    1516386545721
    1
    18B
    267s