0xHaM-dWeekly Mint and Burn copy
    Updated 2025-02-19
    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
    PRICE
    TOTAL_SUPPLY
    TOTAL_SUPPLY_USD
    1
    212.113867981.72148906820437602.945044
    2
    212.113921138.28567584831712641.774702
    3
    212.113919747.17840745831417574.012003
    4
    212.113957441.88349172839412997.90743
    5
    212.113904035.28825957828084924.992737
    6
    212.113945588.55340834836898788.063443
    7
    212.113938676.05269692835432577.537543
    8
    212.113963721.04630108840744871.130923
    9
    212.113948655.52450469837549323.302689
    10
    212.113910807.01930409829521276.86459
    10
    429B
    3s