Pine AnalyticsBLZE Stake 3
    Updated 2025-04-07
    SELECT
    case
    when balance < 0.1 then 'a/ Below 0.1'
    when balance < 1 then 'b/ 0.1-1'
    when balance < 10 then 'c/ 1-10'
    when balance < 100 then 'd/ 10-100'
    when balance < 1000 then 'e/ 100-1K'
    when balance < 10000 then 'f/ 1K-10K'
    when balance < 100000 then 'f/ 1K-100K'
    else 'g/ 100K+'
    end as token_balance_group,
    count(*) as holders,
    sum(balance) as token_balance

    FROM (
    select *
    from (
    SELECT
    OWNER,
    sum(balance - pre_balance) as balance

    FROM solana.core.fact_token_balances
    where mint like 'bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1'
    AND succeeded
    GROUP BY 1
    )
    where balance > 1 / power(10, 5)
    order by 2 desc
    )
    where balance > 0
    GROUP BY 1



    Last run: 17 days ago
    TOKEN_BALANCE_GROUP
    HOLDERS
    TOKEN_BALANCE
    1
    f/ 1K-100K5190621.641766712
    2
    b/ 0.1-135811295.622131744
    3
    e/ 100-1K12031897.414371477
    4
    c/ 1-1015984881.11500954
    5
    g/ 100K+3654568.597661589
    6
    f/ 1K-10K2247127.229416772
    7
    d/ 10-10039413758.214772378
    8
    a/ Below 0.149071332.07751027
    8
    268B
    224s