binhachon26. [Easy] Biggest Liquidations
    Updated 2021-11-03
    select block_timestamp, liquidated_amount_usd, debt_to_cover_amount_usd, liquidator, borrower, collateral_token_symbol, debt_token_symbol from aave.liquidations
    where liquidated_amount_usd > 0
    and block_timestamp > getdate() - interval'365 days'
    order by liquidated_amount_usd desc
    limit 10
    Run a query to Download Data