misaghlbSushi Activity on Ethereum - lending deposit
    Updated 2022-06-25
    SELECT date(BLOCK_TIMESTAMP) as date, SYMBOL, sum(zeroifnull(AMOUNT_USD)) as usd_vol, COUNT(DISTINCT tx_hash) as tx_count from ethereum.sushi.ez_lending
    where ACTION = 'Deposit'
    and date >= '2022-04-01'
    GROUP by date, SYMBOL
    Run a query to Download Data