defi__joshBalance Category of Active $FARTCOIN Holders in 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
    holder
    holder's balance category
    total holders for each day
    1
    2025-04-09 00:00:00.000905>10K - 100K FARTCOIN9672
    2
    2025-04-09 00:00:00.000352>100K FARTCOIN9672
    3
    2025-04-09 00:00:00.0001912100 - 1K FARTCOIN9672
    4
    2025-04-09 00:00:00.0001587>1K - 10K FARTCOIN9672
    5
    2025-04-09 00:00:00.0004916<100 FARTCOIN9672
    6
    2025-04-10 00:00:00.0002064>1K - 10K FARTCOIN13506
    7
    2025-04-10 00:00:00.000401>100K FARTCOIN13506
    8
    2025-04-10 00:00:00.0002607100 - 1K FARTCOIN13506
    9
    2025-04-10 00:00:00.0007319<100 FARTCOIN13506
    10
    2025-04-10 00:00:00.0001115>10K - 100K FARTCOIN13506
    11
    2025-04-11 00:00:00.0001425>10K - 100K FARTCOIN21463
    12
    2025-04-11 00:00:00.0002981>1K - 10K FARTCOIN21463
    13
    2025-04-11 00:00:00.000488>100K FARTCOIN21463
    14
    2025-04-11 00:00:00.0004166100 - 1K FARTCOIN21463
    15
    2025-04-11 00:00:00.00012403<100 FARTCOIN21463
    16
    2025-04-12 00:00:00.0001564>10K - 100K FARTCOIN23936
    17
    2025-04-12 00:00:00.0003241>1K - 10K FARTCOIN23936
    18
    2025-04-12 00:00:00.000518>100K FARTCOIN23936
    19
    2025-04-12 00:00:00.00014030<100 FARTCOIN23936
    20
    2025-04-12 00:00:00.0004583100 - 1K FARTCOIN23936
    75
    4KB
    146s