MasiTop Movemnets
    Updated 2025-02-19
    with tb1 as (
    select
    provider_address,
    sum(msol_minted) as total_minted
    from solana.marinade.ez_liquid_staking_actions
    where action_type in ('depositStakeAccount', 'deposit')
    and block_timestamp >= current_date - 90
    group by 1
    ),

    tb2 as (
    select
    provider_address,
    sum(msol_burned) as total_burned
    from solana.marinade.ez_liquid_staking_actions
    where action_type = 'orderUnstake'
    and block_timestamp >= current_date - 90
    group by 1
    ),

    tb3 as (
    select
    t1.provider_address,
    t1.total_minted,
    coalesce(t2.total_burned, 0) as total_burned,
    coalesce(t2.total_burned, 0) / nullif(t1.total_minted, 0) * 100 as burn_percentage
    from tb1 t1
    left join tb2 t2 on t1.provider_address = t2.provider_address
    ),

    tb4 as (
    select
    provider_address,
    total_minted,
    total_burned,
    burn_percentage
    Last run: about 2 months ago
    PROVIDER_ADDRESS
    TOTAL_MINTED
    TOTAL_BURNED
    BURN_PERCENTAGE
    1
    6ztbH6ghb5XN1rq1eMuQXn9xCgcWktC13JdKkMsATRvv193302.436441286108235.65460789255.992907591
    2
    75jTZDE78xpBJokeB2BcimRNY5BZ7U45bWhpgUrTzWZC161056.21202367500
    3
    9tMYeexrdB4oZzYfhdwJ8xuANYZL8KoTWc2HAUtNoGK599716.5867750500
    4
    6RYVQDmjx9MGRNdzATiYTMMLfDPXxteWzPYKgcHBQQF490595.55495446100
    5
    4xDsmeTWPNjgSVSS1VTfzFq3iHZhp77ffPkAmkZkdu7181478.04532599800
    6
    CapuXNQoDviLvU1PxFiizLgPNQCxrsag1uMeyk6zLVps78639.1615554400
    7
    6HUNuXf8H8iVyMAUhB4SNgS4jjkgLvbEsbxrqBnHV4kF74270.76343167300
    8
    6U91aKa8pmMxkJwBCfPTmUEfZi6dHe7DcFq2ALvB2tbB59092.08459981200
    9
    GGztQqQ6pCPaJQnNpXBgELr5cs3WwDakRbh1iEMzjgSJ58977.89209435700
    10
    9nnLbotNTcUhvbrsA6Mdkx45Sm82G35zo28AqUvjExn858244.46181544500
    11
    2MFoS3MPtvyQ4Wh4M9pdfPjz6UhVoNbFbGJAskCPCj3h55222.94890220500
    12
    585B7BBbcmYLksPNH7uH3L9wujpgb1MRcKfEEocXQi9W51189.33170901618224.52876772635.602201004
    12
    880B
    3s