hessTop Depositers
    select depositor_address, count(tx_hash) as deposit, count(DISTINCT(depositor_address)) as users,
    sum(ISSUED_TOKENS) as amount
    from ethereum.aave.ez_deposits
    where symbol = 'AAVE'
    and block_timestamp::date >= '2023-06-20'
    group by 1
    order by 4 desc
    limit 10
    Run a query to Download Data