maybeyonaspoly_new_addresses
    Updated 2022-05-28
    select
    date(first_tx) as first_date,
    count(distinct from_address) as users
    from (
    select
    from_address,
    min(block_timestamp) as first_tx
    from polygon.transactions
    group by 1
    )
    where first_tx >= current_date - interval {{HISTORY}}
    group by 1
    Run a query to Download Data