defi__joshBalance Category of Active $FARTCOIN Holders in the Last 14 Days
    Updated 10 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: 10 days ago
    day
    holder
    holder's balance category
    total holders for each day
    1
    2025-05-24 00:00:00.000575>1K - 10K FARTCOIN4887
    2
    2025-05-24 00:00:00.000272>10K - 100K FARTCOIN4887
    3
    2025-05-24 00:00:00.000778100 - 1K FARTCOIN4887
    4
    2025-05-24 00:00:00.000123>100K FARTCOIN4887
    5
    2025-05-24 00:00:00.0003139<100 FARTCOIN4887
    6
    2025-05-25 00:00:00.0001247100 - 1K FARTCOIN7006
    7
    2025-05-25 00:00:00.0004236<100 FARTCOIN7006
    8
    2025-05-25 00:00:00.000917>1K - 10K FARTCOIN7006
    9
    2025-05-25 00:00:00.000437>10K - 100K FARTCOIN7006
    10
    2025-05-25 00:00:00.000169>100K FARTCOIN7006
    11
    2025-05-26 00:00:00.000546>10K - 100K FARTCOIN8943
    12
    2025-05-26 00:00:00.0005457<100 FARTCOIN8943
    13
    2025-05-26 00:00:00.0001596100 - 1K FARTCOIN8943
    14
    2025-05-26 00:00:00.000196>100K FARTCOIN8943
    15
    2025-05-26 00:00:00.0001148>1K - 10K FARTCOIN8943
    16
    2025-05-27 00:00:00.000653>10K - 100K FARTCOIN11000
    17
    2025-05-27 00:00:00.000232>100K FARTCOIN11000
    18
    2025-05-27 00:00:00.0001902100 - 1K FARTCOIN11000
    19
    2025-05-27 00:00:00.0001373>1K - 10K FARTCOIN11000
    20
    2025-05-27 00:00:00.0006840<100 FARTCOIN11000
    75
    4KB
    490s