cryptallTOP 10 Users With the Most Transactions Count copy
    Updated 2024-06-25
    select
    from_address as "User",
    count(distinct tx_hash) as "txn_count"
    from blast.core.fact_transactions
    where status='SUCCESS'
    group by 1
    order by 2 desc
    limit 10


    QueryRunArchived: QueryRun has been archived