sallarSushi Activity on Ethereum, daily amount of lent and borrowed
    Updated 2022-06-30
    select
    block_timestamp::date as day,
    action,
    sum(amount_usd) as total_amount_usd
    from ethereum.sushi.ez_lending
    where day >= '2022-01-01'
    group by day, action
    Run a query to Download Data