Afonso_DiazHourly Trends of Deposits and Unstake Orders
    Updated 2025-04-22
    with

    pricet as (
    select
    hour::date as date,
    symbol,
    avg(price) as token_price_usd
    from
    crosschain.price.ez_prices_hourly
    where
    token_address in ('mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So', 'So11111111111111111111111111111111111111112')
    and blockchain = 'solana'
    group by 1, 2
    ),

    main as (
    select
    tx_id,
    block_timestamp,
    provider_address as user,
    msol_minted as amount,
    msol_minted * token_price_usd as amount_usd,
    'Stake' as event_name
    from
    solana.marinade.ez_liquid_staking_actions
    left join
    pricet on block_timestamp::date = date and symbol = 'MSOL'
    where
    action_type in ('deposit', 'depositStakeAccount')

    union all

    select
    tx_id,
    block_timestamp,
    provider_address as user,
    Last run: 11 days ago
    ACTIVE_HOUR
    EVENT_NAME
    TX_COUNT
    TOTAL_MSOL
    TOTAL_USD
    1
    0Unstake11741193968.00010373218138131.13699
    2
    0Stake490075931668.752619561132492828.796336
    3
    1Unstake11971298837.41137857139171928.766337
    4
    1Stake4936691027608.04564106134237859.386274
    5
    2Unstake1247899763.236351132115175569.31952
    6
    2Stake501278943120.859435121116847342.266543
    7
    3Unstake12531385888.69857491141558091.596676
    8
    3Stake4967951109819.51957461125370308.640423
    9
    4Stake4954681279449.42493218140812332.037292
    10
    4Unstake1047695693.29958993499514704.4448205
    11
    5Stake495100798960.753355753106158537.685274
    12
    5Unstake10361055819.6316861895524088.2274529
    13
    6Unstake10981264396.00462067114760662.828728
    14
    6Stake4923561030761.41040582146217306.649992
    15
    7Stake4937101060198.27329968133398417.69414
    16
    7Unstake10471592454.84678524162832357.17904
    17
    8Stake4963251046492.00736055113535116.305289
    18
    8Unstake11081170212.09568042185487098.557612
    19
    9Unstake1184909540.073929108114790895.427209
    20
    9Stake493042883988.926831462123666934.965389
    48
    3KB
    9s