nany_8Untitled Query
    Updated 2021-12-07
    select
    date_trunc('week',BLOCK_TIMESTAMP ) as week,
    count(distinct(ORIGIN_ADDRESS)) as distinct_from_addy
    from ethereum.udm_events
    where CONTRACT_ADDRESS = lower('0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa')
    group by week
    order by week desc
    Run a query to Download Data