sallarSushi Activity on Ethereum, tokens that users have swapped to
    Updated 2022-06-30
    select
    count(distinct tx_hash) as number_of_swaps,
    sum(amount_in_usd) as total_amount_out_usd,
    symbol_out
    from ethereum.sushi.ez_swaps
    where block_timestamp::date >= '2022-01-01'
    and symbol_out is not null
    group by symbol_out
    Run a query to Download Data