messariaptos new addresses
    Updated 2023-12-22
    with
    first_interaction as (
    select
    min(date(block_timestamp)) as first_date,
    sender as address
    from
    aptos.core.fact_transactions
    where tx_type = 'user_transaction'
    group by
    2
    )
    select
    first_date as date,
    count(address) as new_addresses
    from
    first_interaction
    group by
    1


    with
    first_interaction as (
    select
    min(date(block_timestamp)) as date,
    split(payload_function, '::')[0] as contract
    from
    aptos.core.fact_transactions
    where tx_type = 'user_transaction'
    group by
    2
    )
    select
    date,
    count(distinct contract) as new_contracts
    from
    first_interaction
    QueryRunArchived: QueryRun has been archived