h4wkBonkSOL Supply
    Updated 2025-02-25
    with base as (
    select date_trunc('day', block_timestamp) as date,
    'Mint' as type,
    mint_amount/1e9 as amount
    from solana.defi.fact_token_mint_actions
    where mint = 'BonK1YhkXEGLZzwtcvRTip3gAL9nCeQD7ppZBLXhtTs'
    and block_timestamp::date >= '2024-01-01'
    and succeeded = TRUE
    UNION ALL
    select date_trunc('day', block_timestamp) as date,
    'Burn' as type,
    burn_amount/1e9 as amount
    from solana.defi.fact_token_burn_actions
    where mint = 'BonK1YhkXEGLZzwtcvRTip3gAL9nCeQD7ppZBLXhtTs'
    and block_timestamp::date >= '2024-01-01'
    and succeeded = TRUE
    )
    , price as (
    select hour::date as price_date,
    symbol,
    avg(price) as price
    from solana.price.ez_prices_hourly
    where token_address = 'BonK1YhkXEGLZzwtcvRTip3gAL9nCeQD7ppZBLXhtTs'
    group by 1,2
    )

    select date_day,
    case when date_day > '2024-06-05' then 'End of Wonderland SS1'
    when date_day > '2024-04-01' then 'Wonderland SS1'
    else 'Before Wonderland' end as type,
    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_day) as "Total Mint",
    Last run: about 1 month ago
    DATE_DAY
    TYPE
    Mint Amount
    Burn Amount
    NET_AMOUNT
    Total Mint
    Total Burn
    Supply
    Market Cap
    1
    2025-02-24 00:00:00.000End of Wonderland SS10-339.741318-339.741318436092.873957-374801.0466761291.82728710582672.4376348
    2
    2025-02-23 00:00:00.000End of Wonderland SS1000436092.873957-374461.30535261631.56860511407361.3532792
    3
    2025-02-22 00:00:00.000End of Wonderland SS1000436092.873957-374461.30535261631.56860511545698.5449772
    4
    2025-02-21 00:00:00.000End of Wonderland SS1000436092.873957-374461.30535261631.56860511713130.9730208
    5
    2025-02-20 00:00:00.000End of Wonderland SS10-0.000011-0.000011436092.873957-374461.30535261631.56860511557074.7053488
    6
    2025-02-19 00:00:00.000End of Wonderland SS110.983594-107.941284-96.95769436092.873957-374461.30534161631.56861611335149.7007534
    7
    2025-02-18 00:00:00.000End of Wonderland SS10.519668-1061.228571-1060.708903436081.890363-374353.36405761728.52630611420343.2114345
    8
    2025-02-17 00:00:00.000End of Wonderland SS10-977.542382-977.542382436081.370695-373292.13548662789.23520912494168.2924255
    9
    2025-02-16 00:00:00.000End of Wonderland SS10-0.519809-0.519809436081.370695-372314.59310463766.77759113341046.0821731
    10
    2025-02-15 00:00:00.000End of Wonderland SS129.963582-0.0001629.963422436081.370695-372314.07329563767.297413586499.5114093
    11
    2025-02-14 00:00:00.000End of Wonderland SS126.016119-11.34112314.674996436051.407113-372314.07313563737.33397813727561.0916242
    12
    2025-02-13 00:00:00.000End of Wonderland SS10-3.18977-3.18977436025.390994-372302.73201263722.65898213421213.332573
    13
    2025-02-12 00:00:00.000End of Wonderland SS10-20.71796-20.71796436025.390994-372299.54224263725.84875213522120.6088718
    14
    2025-02-11 00:00:00.000End of Wonderland SS10-0.000037-0.000037436025.390994-372278.82428263746.56671213913431.894839
    15
    2025-02-10 00:00:00.000End of Wonderland SS10-14.451166-14.451166436025.390994-372278.82424563746.56674914017710.6616882
    16
    2025-02-09 00:00:00.000End of Wonderland SS13.083986-87.7851-84.701114436025.390994-372264.37307963761.01791513931516.7435195
    17
    2025-02-08 00:00:00.000End of Wonderland SS10-97.872805-97.872805436022.307008-372176.58797963845.71902913412708.6536123
    18
    2025-02-07 00:00:00.000End of Wonderland SS11.001293-242.741585-241.740292436022.307008-372078.71517463943.59183413506405.2556469
    19
    2025-02-06 00:00:00.000End of Wonderland SS10-7489.307264-7489.307264436021.305715-371835.97358964185.33212613711003.2098723
    20
    2025-02-05 00:00:00.000End of Wonderland SS10-0.009559-0.009559436021.305715-364346.66632571674.6393915815427.2834666
    ...
    389
    51KB
    16s