defi__joshBalance Category of Active $TITCOIN Holders in the Last 5 days
    Updated 6 days ago
    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 '2025-03-28' and '2025-04-02' :: date -- Getting resuts for the last 5 days
    ),

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

    daily_join as (
    select
    day,
    Last run: 6 days ago
    day
    holder
    holder's balance category
    total holders for each day
    1
    2025-03-28 00:00:00.00065>1M - 10M TITCOIN3775
    2
    2025-03-28 00:00:00.00094910000 - 100K TITCOIN3775
    3
    2025-03-28 00:00:00.000409>100K - 1M TITCOIN3775
    4
    2025-03-28 00:00:00.0004>10M TITCOIN3775
    5
    2025-03-28 00:00:00.0002348<10000 TITCOIN3775
    6
    2025-03-29 00:00:00.000531>100K - 1M TITCOIN7330
    7
    2025-03-29 00:00:00.00094>1M - 10M TITCOIN7330
    8
    2025-03-29 00:00:00.0005316<10000 TITCOIN7330
    9
    2025-03-29 00:00:00.000138510000 - 100K TITCOIN7330
    10
    2025-03-29 00:00:00.0004>10M TITCOIN7330
    11
    2025-03-30 00:00:00.0005490<10000 TITCOIN7440
    12
    2025-03-30 00:00:00.000112>1M - 10M TITCOIN7440
    13
    2025-03-30 00:00:00.000130110000 - 100K TITCOIN7440
    14
    2025-03-30 00:00:00.0005>10M TITCOIN7440
    15
    2025-03-30 00:00:00.000532>100K - 1M TITCOIN7440
    16
    2025-03-31 00:00:00.0007>10M TITCOIN8721
    17
    2025-03-31 00:00:00.000135910000 - 100K TITCOIN8721
    18
    2025-03-31 00:00:00.000131>1M - 10M TITCOIN8721
    19
    2025-03-31 00:00:00.000557>100K - 1M TITCOIN8721
    20
    2025-03-31 00:00:00.0006667<10000 TITCOIN8721
    30
    2KB
    22s