vendettaTop 10 AAVE Depositors By Volume Top 10 AAVE Depositors B
    Updated 2023-02-12
    select depositor_address,
    count (distinct tx_hash) as TX_Count,
    sum (supplied_usd) as Volume
    from ethereum.aave.ez_deposits
    where block_timestamp >= CURRENT_DATE - 90 and supplied_usd > 0
    group by 1
    order by 3 DESC
    limit 10


    Run a query to Download Data