messarinew users
    Updated 2024-07-09
    with
    first_date as (
    SELECT
    min(date(block_timestamp)) as first_date,
    tx_from as address
    from
    cosmos.core.fact_transactions
    group by
    2
    )
    SELECT
    first_date as date,
    count(address) as new_addresses
    from
    first_date
    group by
    1
    order by
    1 desc;
    QueryRunArchived: QueryRun has been archived