freemartianStable VS Non-Stable Coins
    Updated 2022-07-18
    select
    count(distinct depositor) as lenders_count,
    symbol,
    case
    when symbol in ('USDC', 'USDT', 'DAI', 'UST', 'sUSD', 'TUSD') then 'Stable Lenders'
    else 'Non-Stable Lenders'
    end as asset
    from ethereum.sushi.ez_lending
    where action = 'Deposit'
    group by symbol, asset
    order by lenders_count DESC
    Run a query to Download Data