hrst79Users main copy
    Updated 2024-09-29
    -- forked from Users main @ https://flipsidecrypto.xyz/studio/queries/86a3c248-db43-4438-9d81-708df1126a2f


    SELECT date_trunc('month',block_timestamp) as date,
    label_type,
    project_name,
    count (DISTINCT TX_SIGNER) as active_users,
    count(DISTINCT tx_hash) as txs
    from near.core.fact_transactions a join near.core.dim_address_labels b on a.TX_RECEIVER=b.address
    where date <'2024-08-01'
    group by 1,2,3







    QueryRunArchived: QueryRun has been archived