DATE_DAY | TYPE | Mint Amount | Burn Amount | NET_AMOUNT | Total Mint | Total Burn | Supply | Market Cap | |
---|---|---|---|---|---|---|---|---|---|
1 | 2025-02-24 00:00:00.000 | End of Wonderland SS1 | 0 | -339.741318 | -339.741318 | 436092.873957 | -374801.04667 | 61291.827287 | 10582672.4376348 |
2 | 2025-02-23 00:00:00.000 | End of Wonderland SS1 | 0 | 0 | 0 | 436092.873957 | -374461.305352 | 61631.568605 | 11407361.3532792 |
3 | 2025-02-22 00:00:00.000 | End of Wonderland SS1 | 0 | 0 | 0 | 436092.873957 | -374461.305352 | 61631.568605 | 11545698.5449772 |
4 | 2025-02-21 00:00:00.000 | End of Wonderland SS1 | 0 | 0 | 0 | 436092.873957 | -374461.305352 | 61631.568605 | 11713130.9730208 |
5 | 2025-02-20 00:00:00.000 | End of Wonderland SS1 | 0 | -0.000011 | -0.000011 | 436092.873957 | -374461.305352 | 61631.568605 | 11557074.7053488 |
6 | 2025-02-19 00:00:00.000 | End of Wonderland SS1 | 10.983594 | -107.941284 | -96.95769 | 436092.873957 | -374461.305341 | 61631.568616 | 11335149.7007534 |
7 | 2025-02-18 00:00:00.000 | End of Wonderland SS1 | 0.519668 | -1061.228571 | -1060.708903 | 436081.890363 | -374353.364057 | 61728.526306 | 11420343.2114345 |
8 | 2025-02-17 00:00:00.000 | End of Wonderland SS1 | 0 | -977.542382 | -977.542382 | 436081.370695 | -373292.135486 | 62789.235209 | 12494168.2924255 |
9 | 2025-02-16 00:00:00.000 | End of Wonderland SS1 | 0 | -0.519809 | -0.519809 | 436081.370695 | -372314.593104 | 63766.777591 | 13341046.0821731 |
10 | 2025-02-15 00:00:00.000 | End of Wonderland SS1 | 29.963582 | -0.00016 | 29.963422 | 436081.370695 | -372314.073295 | 63767.2974 | 13586499.5114093 |
11 | 2025-02-14 00:00:00.000 | End of Wonderland SS1 | 26.016119 | -11.341123 | 14.674996 | 436051.407113 | -372314.073135 | 63737.333978 | 13727561.0916242 |
12 | 2025-02-13 00:00:00.000 | End of Wonderland SS1 | 0 | -3.18977 | -3.18977 | 436025.390994 | -372302.732012 | 63722.658982 | 13421213.332573 |
13 | 2025-02-12 00:00:00.000 | End of Wonderland SS1 | 0 | -20.71796 | -20.71796 | 436025.390994 | -372299.542242 | 63725.848752 | 13522120.6088718 |
14 | 2025-02-11 00:00:00.000 | End of Wonderland SS1 | 0 | -0.000037 | -0.000037 | 436025.390994 | -372278.824282 | 63746.566712 | 13913431.894839 |
15 | 2025-02-10 00:00:00.000 | End of Wonderland SS1 | 0 | -14.451166 | -14.451166 | 436025.390994 | -372278.824245 | 63746.566749 | 14017710.6616882 |
16 | 2025-02-09 00:00:00.000 | End of Wonderland SS1 | 3.083986 | -87.7851 | -84.701114 | 436025.390994 | -372264.373079 | 63761.017915 | 13931516.7435195 |
17 | 2025-02-08 00:00:00.000 | End of Wonderland SS1 | 0 | -97.872805 | -97.872805 | 436022.307008 | -372176.587979 | 63845.719029 | 13412708.6536123 |
18 | 2025-02-07 00:00:00.000 | End of Wonderland SS1 | 1.001293 | -242.741585 | -241.740292 | 436022.307008 | -372078.715174 | 63943.591834 | 13506405.2556469 |
19 | 2025-02-06 00:00:00.000 | End of Wonderland SS1 | 0 | -7489.307264 | -7489.307264 | 436021.305715 | -371835.973589 | 64185.332126 | 13711003.2098723 |
20 | 2025-02-05 00:00:00.000 | End of Wonderland SS1 | 0 | -0.009559 | -0.009559 | 436021.305715 | -364346.666325 | 71674.63939 | 15815427.2834666 |
h4wkBonkSOL Supply
Updated 2025-02-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
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
...
389
51KB
16s