sallarSushi Activity on Ethereum, number of withdraw and depositors
    Updated 2022-06-30
    select
    symbol,
    count(distinct _log_id) as number_of_actions,
    count(distinct depositor) as number_of_users
    from ethereum.sushi.ez_lending
    where block_timestamp::date >= '2022-01-01'
    and action = 'Withdraw'
    group by symbol
    Run a query to Download Data