0xHaM-dWeekly Mint and Burn
    Updated 2025-02-19
    with priceTb as (
    select
    date_trunc('day',hour) as week,
    median(price) as avg_price,
    from solana.price.ez_prices_hourly
    where token_address = 'mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So'
    group by 1
    )
    ,
    mintEvent as (
    select
    trunc(block_timestamp,'week') 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,'week') 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
    )
    select
    COALESCE(me.date,be.date) as week,
    avg_price,
    total_mint,
    total_burnt,
    total_minted + total_burned as total_supply,
    Last run: about 1 month ago
    WEEK
    AVG_PRICE
    TOTAL_MINT
    TOTAL_BURNT
    TOTAL_SUPPLY
    TOTAL_SUPPLY_USD
    1
    2025-02-17 00:00:00.000232.85120471.800627318-180157.5586688343904035.28825957909054616.871242
    2
    2025-02-10 00:00:00.000256.9175263.368307195-143119.2441689583963721.046301091018279936.79475
    3
    2025-02-03 00:00:00.000250.54189263.203910661-417349.2187618513931576.92216285985017282.078681
    4
    2025-01-27 00:00:00.000291.8587282.824703684-156325.0267917174159662.937014041213997628.16755
    5
    2025-01-20 00:00:00.000311.125176391.98016964-171609.7183372154228705.139102081315655886.40313
    6
    2025-01-13 00:00:00.000226.09119200.571753792-218142.6099824194223922.87726966954986723.321896
    7
    2025-01-06 00:00:00.000270.645273421.964885854-283616.7995439834322864.915498281169961775.05503
    8
    2024-12-30 00:00:00.000239.1576199.866012755-94039.2608121544333059.750156411036251239.24991
    9
    2024-12-23 00:00:00.000228.43167693.931940209-223510.0859449764350899.14495581993875891.682256
    10
    2024-12-16 00:00:00.000272.835175513.528945252-146391.6798038064406715.298960581202306168.59191
    11
    2024-12-09 00:00:00.000285.505176980.734029981-80818.9092066924377593.449819131249824817.89061
    12
    2024-12-02 00:00:00.000280.705240905.592231499-204608.5799099474281431.624995841201819264.29446
    13
    2024-11-25 00:00:00.000310.3596401.738418309-86497.1856350594245134.612674291317477527.04347
    14
    2024-11-18 00:00:00.000297.88588653.015734248-129768.1314465094235230.059891041261611506.39064
    15
    2024-11-11 00:00:00.000263.23123350.825069843-179209.3386904994276345.17560331125662340.57406
    16
    2024-11-04 00:00:00.000199.3275558.990095855-111387.5251753284332203.68922396863494839.33612
    17
    2024-10-28 00:00:00.000215.695150933.512343074-58783.9475785634368032.22430344942162710.62113
    18
    2024-10-21 00:00:00.000204.77370875.673137191-299485.1315642894275882.65953892875572492.193786
    19
    2024-10-14 00:00:00.000187.3766709.800591027-97356.8411672844204492.11796602787795688.143294
    20
    2024-10-07 00:00:00.000181.465155190.844249125-177775.8733474374235139.15854228768529527.404875
    ...
    187
    20KB
    2s