MasiTotal Active Addresses May v
    Updated 2024-07-21
    with tb1 as(select DISTINCT tx_signer
    from near.core.fact_transactions
    where block_timestamp::Date >= '2024-04-01' and block_timestamp::date < '2024-05-01'
    )
    ,
    tb2 as (select count(DISTINCT tx_signer) as april_addresses
    from near.core.fact_transactions
    where block_timestamp::Date >= '2024-04-01' and block_timestamp::date < '2024-05-01')

    select trunc(block_timestamp,'day') as day,
    count(DISTINCT tx_signer) as active_addresses
    from near.core.fact_transactions
    where block_timestamp::Date >= '2024-05-01' and block_timestamp::date < '2024-06-01'
    and tx_signer in (select tx_signer from tb1)
    group by 1


    QueryRunArchived: QueryRun has been archived