284410 users who sent the most funds through cash streams
    Updated 2022-04-23
    select FROM_ADDRESS as users,sum (AMOUNT_USD)
    from ethereum_core.ez_token_transfers
    where TO_ADDRESS='0xcd18eaa163733da39c232722cbc4e8940b1d8888'
    and AMOUNT_USD is not null

    group by users
    order by sum (AMOUNT_USD) DESC
    limit 10
    Run a query to Download Data