mansaUntitled Query
    Updated 2022-07-28
    SELECT
    date(block_timestamp) as dates,
    count(distinct(MATIC_TO_ADDRESS )) as n_users,
    sum (n_users) over (order by dates) as cum_n_users
    from polygon.core.ez_matic_transfers
    where
    lower(MATIC_TO_ADDRESS) = lower('0x7ceb23fd6bc0add59e62ac25578270cff1b9f619')
    group by dates
    order by dates desc
    Run a query to Download Data