MasiMonthly Net Change By Minters Breakdown
    Updated 2025-02-19
    with tb1 as (
    select
    provider_address,
    date_trunc('month', block_timestamp) as month,
    sum(msol_minted) as msol_minted
    from solana.marinade.ez_liquid_staking_actions
    where action_type in ('depositStakeAccount','deposit')
    group by 1,2
    ),
    tb2 as (
    select
    provider_address,
    date_trunc('month', block_timestamp) as month,
    sum(msol_burned) as msol_burned
    from solana.marinade.ez_liquid_staking_actions
    where action_type = 'orderUnstake'
    group by 1,2
    ),
    tb3 as (
    select
    coalesce(t1.provider_address, t2.provider_address) as provider_address,
    coalesce(t1.month, t2.month) as month,
    coalesce(t1.msol_minted, 0) as msol_minted,
    coalesce(t2.msol_burned, 0) as msol_burned
    from tb1 t1
    full outer join tb2 t2 on t1.provider_address = t2.provider_address and t1.month = t2.month
    ),
    tb4 as (
    select
    provider_address,
    month,
    msol_minted,
    msol_burned,
    msol_minted - msol_burned as net_change,
    case
    when msol_minted <= 1 then '≤ 1 msol'
    Last run: 2 months ago
    MONTH
    MINT_CATEGORY
    TOTAL_MINTED
    TOTAL_BURNED
    NET_CHANGE
    1
    2025-02-01 00:00:00.0001-10 msol1426.08719952155.5474088131370.539790708
    2
    2025-02-01 00:00:00.00010-100 msol9250.109872466176.5064722089073.603400258
    3
    2025-02-01 00:00:00.000100-1k msol28626.40841877611270.82989844817355.578520328
    4
    2025-02-01 00:00:00.0001k-10k msol74903.3166039219943.37683944364959.939764478
    5
    2025-02-01 00:00:00.000> 10k msol365595.87755298260087.209712519105508.667840461
    6
    2025-02-01 00:00:00.000≤ 1 msol271.111157393439596.888747905-439325.777590512
    7
    2025-01-01 00:00:00.0001-10 msol2384.353598196114.31355532270.040042896
    8
    2025-01-01 00:00:00.00010-100 msol12283.32612822509.92716624611773.398961974
    9
    2025-01-01 00:00:00.000100-1k msol46650.86873716311123.51047406735527.358263096
    10
    2025-01-01 00:00:00.0001k-10k msol62184.77311374618480.66576199843704.107351748
    11
    2025-01-01 00:00:00.000> 10k msol549533.80462767627943.347931857521590.456695819
    12
    2025-01-01 00:00:00.000≤ 1 msol389.478355166774788.782252653-774399.303897487
    13
    2024-12-01 00:00:00.0001-10 msol4958.9010454292266.4685818272692.432463602
    14
    2024-12-01 00:00:00.00010-100 msol14721.84293276917629.924951478-2908.082018709
    15
    2024-12-01 00:00:00.000100-1k msol49830.3662868418398.28949786541432.076788976
    16
    2024-12-01 00:00:00.0001k-10k msol176853.1295682268251.201373007168601.928195219
    17
    2024-12-01 00:00:00.000> 10k msol543156.00803678824644.454624383518511.553412405
    18
    2024-12-01 00:00:00.000≤ 1 msol473.756986779620336.694675912-619862.937689133
    19
    2024-11-01 00:00:00.0001-10 msol4429.153238123257.8093647084171.343873415
    20
    2024-11-01 00:00:00.00010-100 msol12866.8443671142336.89214625410529.95222086
    ...
    144
    12KB
    6s