Flipside Teamhoney supply
    Updated 2025-02-24
    with base as (
    select date_trunc('week', block_timestamp) as date,
    'Mint' as type,
    mint_amount/1e9 as amount
    from solana.defi.fact_token_mint_actions
    where mint = '4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy'
    and block_timestamp::date >= '2023-01-01'
    UNION ALL
    select date_trunc('week', block_timestamp) as date,
    'Burn' as type,
    burn_amount/1e9 as amount
    from solana.defi.fact_token_burn_actions
    where mint = '4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy'
    and block_timestamp::date >= '2023-01-01'
    )

    select date,
    sum(zeroifnull(case when type = 'Mint' then amount end)) as "Mint Amount",
    sum(zeroifnull(case when type = 'Burn' then -amount end)) as "Burn Amount",
    "Mint Amount" + "Burn Amount" as net_amount,
    sum("Mint Amount") over (order by date) as "Total Mint",
    sum("Burn Amount") over (order by date) as "Total Burn",
    sum(net_amount) over (order by date) as "Net Change"
    from base
    group by date
    order by date desc



    Last run: about 2 months ago
    DATE
    Mint Amount
    Burn Amount
    NET_AMOUNT
    Total Mint
    Total Burn
    Net Change
    1
    2025-03-03 00:00:00.0002668017.558247-1044.4771092666973.081138429355917.973698-11630855.788716417725062.184982
    2
    2025-02-24 00:00:00.0002617558.987583-1670.6938512615888.293732426687900.415451-11629811.311607415058089.103844
    3
    2025-02-17 00:00:00.0002570173.908949-1182.1244732568991.784476424070341.427868-11628140.617756412442200.810112
    4
    2025-02-10 00:00:00.0002554965.300016-6784.9730532548180.326963421500167.518919-11626958.493283409873209.025636
    5
    2025-02-03 00:00:00.0002445436.2657-10115.7380282435320.527672418945202.218903-11620173.52023407325028.698673
    6
    2025-01-27 00:00:00.0002365819.094042-562661.2452831803157.848759416499765.953203-11610057.782202404889708.171001
    7
    2025-01-20 00:00:00.0002309337.960385-18182.3187692291155.641616414133946.859161-11047396.536919403086550.322242
    8
    2025-01-13 00:00:00.0002241511.43095-28481.4290532213030.001897411824608.898776-11029214.21815400795394.680626
    9
    2025-01-06 00:00:00.0002173269.361295-65797.2613272107472.099968409583097.467826-11000732.789097398582364.678729
    10
    2024-12-30 00:00:00.0002303517.275993-321372.4010841982144.874909407409828.106531-10934935.52777396474892.578761
    11
    2024-12-23 00:00:00.0002554482.997129-435114.4754122119368.521717405106310.830538-10613563.126686394492747.703852
    12
    2024-12-16 00:00:00.0002579738.837395-279194.6988782300544.138517402551827.833409-10178448.651274392373379.182135
    13
    2024-12-09 00:00:00.0002606249.815579-914202.7944841692047.021095399972088.996014-9899253.952396390072835.043618
    14
    2024-12-02 00:00:00.0002566237.184039-216032.617452350204.566589397365839.180435-8985051.157912388380788.022523
    15
    2024-11-25 00:00:00.0002675059.329277-671940.8494662003118.479811394799601.996396-8769018.540462386030583.455934
    16
    2024-11-18 00:00:00.0002685007.259466-575930.8127342109076.446732392124542.667119-8097077.690996384027464.976123
    17
    2024-11-11 00:00:00.0002708373.946805-447197.7714252261176.17538389439535.407653-7521146.878262381918388.529391
    18
    2024-11-04 00:00:00.0002686584.303905-497708.221162188876.082745386731161.460848-7073949.106837379657212.354011
    19
    2024-10-28 00:00:00.0002779594.810752-386891.4789122392703.33184384044577.156943-6576240.885677377468336.271266
    20
    2024-10-21 00:00:00.0002868195.783128-303467.3001492564728.482979381264982.346191-6189349.406765375075632.939426
    ...
    114
    13KB
    4s