elsinaLido Top User
    Updated 2022-06-09
    select eth_from_address,count(*) as "Count",sum(AMOUNT_USD) as "Total USD",sum(AMOUNT) as "otal ETH"
    from ethereum.core.ez_eth_transfers
    where eth_to_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
    group by eth_from_address
    order by "Count" desc
    OFFSET 0
    FETCH NEXT 12 ROWS ONLY;


    Run a query to Download Data