hadaaaa-lUWzWOWeekly metrics of address that transacted in Uniswap and Sushiswap
    Updated 2022-08-21
    select date_trunc('week',block_timestamp) as week,to_label,count(distinct from_address) as adrress
    from ethereum.udm_events
    where to_label = 'sushiswap' or to_label='uniswap' and week>'2022-01-01'
    group by 1,2
    order by 1

    Run a query to Download Data