Updated 2024-08-08
    with tr as
    (select from_address, sum(value)*2 as val
    from sei.core_evm.fact_transactions
    where TO_ADDRESS = '0x613cb5b7a8ffd4304161f30fba46ce4284c25e21'
    and status = 'SUCCESS'
    group by 1
    )


    select from_address, val
    from tr
    where val > 14999
    and val <50000
    order by 2 desc

    QueryRunArchived: QueryRun has been archived