mmdrezatop withdrawed from the lending pools
    Updated 2022-06-26
    select LENDING_POOL,sum(amount_usd) as volume
    from ethereum.sushi.ez_lending
    where block_timestamp >= current_date-90 and amount_usd is not null and action = 'Withdraw'
    group by lending_pool
    order by volume desc
    limit 20
    Run a query to Download Data