defi__joshDaily Active Holders of $TITCOIN Over the Last 14 Days
    Updated 8 hours ago
    -- forked from $TITCOIN launch info @ https://flipsidecrypto.xyz/studio/queries/14cf54cf-e523-40a5-a8ba-94976dfe5b51

    with raw as (
    select
    block_timestamp,
    block_timestamp::date as day,
    owner,
    balance
    from solana.core.fact_token_balances
    where block_timestamp::date >= '2025-03-06' -- first mint date
    and mint = 'FtUEW73K6vEYHfbkfpdBZfWpxgQar2HipGdbutEhpump' -- $TITCOIN CA
    qualify row_number() over (partition by day, owner order by block_timestamp desc) = 1 -- Ensuring Only Latest Balance Per Owner Per Day
    ),

    owners as (
    select
    distinct owner as owner
    from raw
    ),

    all_dates as (
    select
    date_day as day
    from crosschain.core.dim_dates
    where date_day::date between current_date - 14 and current_date :: date -- Getting resuts for the last 14 days
    ),

    all_dates_owners as (
    select
    day,
    owner
    from all_dates
    cross join owners
    ),

    daily_join as (
    Last run: about 8 hours ago
    day
    no. of active holders
    1
    2025-05-13 00:00:00.00010120
    2
    2025-05-07 00:00:00.0002843
    3
    2025-05-17 00:00:00.00011191
    4
    2025-05-12 00:00:00.0009933
    5
    2025-05-20 00:00:00.00011466
    6
    2025-05-14 00:00:00.00011018
    7
    2025-05-06 00:00:00.0001430
    8
    2025-05-15 00:00:00.00011423
    9
    2025-05-10 00:00:00.0007677
    10
    2025-05-19 00:00:00.00011491
    11
    2025-05-18 00:00:00.00011418
    12
    2025-05-08 00:00:00.0005905
    13
    2025-05-16 00:00:00.00011566
    14
    2025-05-09 00:00:00.0007114
    15
    2025-05-11 00:00:00.0008603
    15
    504B
    82s