nitsDaily Users of Sushiswap
    Updated 2022-02-26
    Select date(block_timestamp) as day, count(distinct to_address) as unique_users
    from ethereum.dex_swaps
    where platform = 'sushiswap'
    -- lower(event_name) ilike '%LIMITOrder%'
    -- and lower(contract_name) = 'sushiswap: settlement'
    GROUP by 1
    order by 1 desc
    limit 200
    Run a query to Download Data