vendettaDistribution of tokens acquired by volume Which tokens are users acquring for BUSD? Token swapped from BUSD by # of
    Updated 2023-02-16
    -- forked from 8611ea98-7d2a-487c-bdeb-0295fe8901ce

    SELECT
    symbol_out as token_acquired,
    count(distinct tx_hash) as counts,
    count(distinct sender) as users,
    sum(amount_in) as volume
    from bsc.sushi.ez_swaps
    where block_timestamp>='2023-01-01' and symbol_in='BUSD'
    group by 1
    order by 2 desc


    Run a query to Download Data