PRICE | TOTAL_SUPPLY | TOTAL_SUPPLY_USD | |
---|---|---|---|
1 | 212.11 | 3867981.72148906 | 820437602.945044 |
2 | 212.11 | 3921138.28567584 | 831712641.774702 |
3 | 212.11 | 3919747.17840745 | 831417574.012003 |
4 | 212.11 | 3957441.88349172 | 839412997.90743 |
5 | 212.11 | 3904035.28825957 | 828084924.992737 |
6 | 212.11 | 3945588.55340834 | 836898788.063443 |
7 | 212.11 | 3938676.05269692 | 835432577.537543 |
8 | 212.11 | 3963721.04630108 | 840744871.130923 |
9 | 212.11 | 3948655.52450469 | 837549323.302689 |
10 | 212.11 | 3910807.01930409 | 829521276.86459 |
0xHaM-dWeekly Mint and Burn copy
Updated 2025-02-19
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 priceTb as (
select
hour,
price,
from solana.price.ez_prices_hourly
where token_address = 'mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So'
and hour = trunc(current_date(), 'hour')
)
,
mintEvent as (
select
trunc(block_timestamp,'d') as date,
sum(MSOL_MINTED) as total_mint,
sum(total_mint) over (order by date asc) as total_minted
from solana.marinade.ez_liquid_staking_actions
where action_type in ('depositStakeAccount','deposit')
group by 1
order by 1 desc
)
,
burnEvent as (
select
trunc(block_timestamp,'d') as date,
sum(MSOL_BURNED*-1) as total_burnt,
sum(total_burnt) over (order by date asc) as total_burned
from solana.marinade.ez_liquid_staking_actions
where action_type in ('orderUnstake')
group by 1
order by 1 desc
)
, final as (
select
COALESCE(me.date,be.date) as week,
total_mint,
total_burnt,
total_minted + total_burned as total_supply,
Last run: about 1 month ago
10
429B
3s