Afonso_DiazTop users
    Updated 2025-04-16
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    from_address as user,
    tx_fee
    from
    sei.core_evm.fact_transactions
    )

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