CartanGroup2023-05-01 02:40 PM
    select
    ETH_FROM_ADDRESS as address,
    sum(amount) as total_volume,
    count(distinct hash) as total_loans
    from ethereum.core.ez_eth_transfers
    where ETH_TO_ADDRESS = '0x29469395eAf6f95920E59F858042f0e28D98a20B'
    group by 1
    order by 2 desc

    Run a query to Download Data