Afonso_DiazTop users (tx)
    Updated 2025-01-05
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    from_address as user,
    tx_fee
    from
    mantle.core.fact_transactions
    where
    tx_succeeded
    and block_timestamp::date between '{{ start_date }}' and '{{ end_date }}'
    )

    select
    user,
    count(distinct tx_hash) as transactions
    from
    main
    group by 1
    order by 2 desc
    limit 100
    QueryRunArchived: QueryRun has been archived