boomer77Top 10 Liquidity Provider
    Updated 2021-08-23
    SELECT
    depositor_address,
    sum(supplied_usd) as supplied_amount_usd
    FROM aave.deposits
    where supplied_usd is not null
    GROUP BY 1
    order by 2 desc
    limit 10
    Run a query to Download Data