Pine AnalyticsBLZE Stake
    Updated 12 hours ago
    with tab1 as (
    SELECT
    date_trunc('week', date) as week,
    sum(
    case when type like 'mint' then amt else -amt end
    ) as net_supply,
    sum(net_supply) over (order by week) as total_supply

    FROM (
    SELECT
    date(block_timestamp) as date,
    'mint' as type,
    mint_amount / power(10, 9) as amt

    FROM solana.defi.fact_token_mint_actions
    where mint like 'bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1'
    and SUCCEEDED

    UNION all

    SELECT
    date(block_timestamp) as date,
    'burn' as type,
    burn_amount / power(10, 9) as amt

    FROM solana.defi.fact_token_burn_actions
    where mint like 'bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1'
    and SUCCEEDED
    )
    GROUP by 1
    order by 1 DESC
    )

    SELECT
    tab1.*,
    case when not t_price is NULL then t_price else s_price end * total_supply as market_cap
    Last run: about 12 hours agoAuto-refreshes every 24 hours
    WEEK
    NET_SUPPLY
    TOTAL_SUPPLY
    MARKET_CAP
    1
    2025-05-26 00:00:00.0004120.37434005937136.913413684202215403.176405
    2
    2025-05-19 00:00:00.0009008.864769835933016.539073634187013835.091919
    3
    2025-05-12 00:00:00.000-8292.447679167924007.674303799196314670.482585
    4
    2025-05-05 00:00:00.000-9888.242696679932300.121982966164331881.001327
    5
    2025-04-28 00:00:00.000223.813118275942188.364679645169608038.467806
    6
    2025-04-21 00:00:00.00025034.931183548941964.55156137158626830.482935
    7
    2025-04-14 00:00:00.000-7105.211384725916929.620377822146030211.341372
    8
    2025-04-07 00:00:00.000-23284.012021826924034.831762547116391427.40881
    9
    2025-03-31 00:00:00.000-2098.995866018947318.843784373143049882.005659
    10
    2025-03-24 00:00:00.00023438.328061665949417.839650391161192160.815843
    11
    2025-03-17 00:00:00.000-4273.403389431925979.511588726142823079.867445
    12
    2025-03-10 00:00:00.000-5560.420117115930252.914978157141417048.134979
    13
    2025-03-03 00:00:00.000-501.674558559935813.335095272181660084.608694
    14
    2025-02-24 00:00:00.000-18953.863337252936315.009653831178021572.785483
    15
    2025-02-17 00:00:00.000-23951.223230583955268.872991083209146567.052668
    16
    2025-02-10 00:00:00.000-321.068511098979220.096221666236824380.27121
    17
    2025-02-03 00:00:00.000-17435.76083417979541.164732764230912136.468278
    18
    2025-01-27 00:00:00.000-11223.43859189996976.925566934272802796.14288
    19
    2025-01-20 00:00:00.000-13112.7530160361008200.36415882296320169.02992
    20
    2025-01-13 00:00:00.000-57298.248908031021313.11717486218714204.042996
    ...
    161
    12KB
    102s