anniecryptoStablecoins on Kashi for Ethereum (lending)
    Updated 2022-07-14
    select trunc(block_timestamp, 'month') as month, symbol,
    count(distinct depositor) as users,
    coalesce (sum(amount_usd),0) as amount_lend
    from flipside_prod_db.crosschain.ez_lending
    where platform ilike 'sushi' and blockchain ilike 'ethereum'
    and action ilike 'deposit'
    and (symbol = 'USDT' or symbol = 'USDC' or symbol = 'DAI' or symbol = 'USDN')
    group by 1, 2



    Run a query to Download Data