NuveveCryptoArchivedNEAR New Token Contracts Deployed Per Week
    Updated 2023-03-14
    with new_wallets as (
    select
    min(block_timestamp) as timestamp,
    token_in_contract
    from near.core.ez_dex_swaps
    group by token_in_contract
    )
    select
    date_trunc('week', timestamp) as week,
    count(distinct token_in_contract) as contracts
    from new_wallets
    group by week
    order by week asc

    Run a query to Download Data