freemartianLending Stable Coins - ETH
    Updated 2022-07-13
    select
    sum(amount) as lending_volume,
    lending_pool, symbol,
    count(distinct depositor) as lending_user
    from ethereum.sushi.ez_lending
    where action = 'Deposit'
    and symbol in ('DAI', 'USDC', 'USDT', 'sUSD', 'FRAX')
    group by lending_pool, symbol

    Run a query to Download Data