Afonso_DiazTop users
    Updated 2025-01-15
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    from_address as user,
    tx_fee
    from
    flow.core_evm.fact_transactions
    where from_address not in ('0x0000000000000000000000020000000000000000', '0x0000000000000000000000030000000000000000', '0x0000000000000000000000010000000000000000', '0x00000000000000000000000249250a5C27Ecab3B',
    '0x000000000000000000000002b87c966bC00Bc2C4')
    )

    select
    user,
    count(distinct tx_hash) as transactions
    from main
    group by 1
    order by 2 desc
    limit 10

    QueryRunArchived: QueryRun has been archived