lagandispenserUnique Sushiswap Swappers
    Updated 2022-06-30
    SELECT block_timestamp::date as date, count (origin_from_address) as Unique_Swappers, count (distinct tx_hash) as Swap_Number,sum(amount_in_usd) as USD_Volume
    FROM ethereum.sushi.ez_swaps
    WHERE BLOCK_TIMESTAMP >= '2022-05-01'
    GROUP BY 1
    ORDER BY 1

    Run a query to Download Data