vendettaTop 20 Amount in copy
    Updated 2023-02-14
    -- forked from 976a320c-27ea-4ba0-b4ac-ac0f06bd54f1

    select
    tx_receiver as users,
    sum(deposit / pow(10, 24)) as Aamount_in
    from
    near.core.fact_transfers
    group by
    users
    having
    Aamount_in > 0
    order by
    Aamount_in desc
    limit
    50


    Run a query to Download Data