defi__joshDaily Active Holders of $FARTCOIN Over the Last 14 Days
    Updated 4 days ago
    -- forked from $FARTCOIN launch info @ https://flipsidecrypto.xyz/studio/queries/fe4a884c-7f8a-468e-a609-f54525c454d5

    with raw as (
    select
    block_timestamp,
    block_timestamp::date as day,
    owner,
    balance
    from solana.core.fact_token_balances
    where block_timestamp::date >= '2024-10-18' -- first mint date
    and mint = '9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump' -- $FARTCOIN 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: 4 days ago
    day
    no. of active holders
    1
    2025-04-21 00:00:00.00037545
    2
    2025-04-22 00:00:00.00041151
    3
    2025-04-17 00:00:00.00031456
    4
    2025-04-13 00:00:00.00025324
    5
    2025-04-16 00:00:00.00030028
    6
    2025-04-20 00:00:00.00036747
    7
    2025-04-11 00:00:00.00021470
    8
    2025-04-12 00:00:00.00023942
    9
    2025-04-15 00:00:00.00028494
    10
    2025-04-18 00:00:00.00033483
    11
    2025-04-19 00:00:00.00035097
    12
    2025-04-10 00:00:00.00013499
    13
    2025-04-23 00:00:00.00041908
    14
    2025-04-14 00:00:00.00026895
    15
    2025-04-09 00:00:00.0009667
    15
    510B
    151s