Sajjadiii4.Stablecoins on Kashi
    Updated 2022-07-13
    select BLOCK_TIMESTAMP::date as date,SYMBOL,
    count(*)as number_deposit,
    sum(amount_usd) as total_USD
    from polygon.sushi.ez_borrowing
    where symbol in ('USDC', 'USDT', 'DAI', 'UST')
    and block_timestamp::date >= '2022-06-14'
    group by 1,2
    order by 1
    Run a query to Download Data