defi__joshDaily Active Holders of $TITCOIN Over the Last 14 Days
    Updated 3 days 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: 3 days ago
    day
    no. of active holders
    1
    2025-04-21 00:00:00.0008735
    2
    2025-04-22 00:00:00.0009039
    3
    2025-04-17 00:00:00.0009031
    4
    2025-04-23 00:00:00.0009291
    5
    2025-04-12 00:00:00.0007502
    6
    2025-04-18 00:00:00.0008909
    7
    2025-04-09 00:00:00.0003423
    8
    2025-04-14 00:00:00.0008682
    9
    2025-04-16 00:00:00.0009014
    10
    2025-04-15 00:00:00.0008572
    11
    2025-04-11 00:00:00.0006453
    12
    2025-04-20 00:00:00.0008831
    13
    2025-04-13 00:00:00.0008038
    14
    2025-04-10 00:00:00.0004570
    15
    2025-04-19 00:00:00.0008842
    15
    496B
    40s