gigiokobaMsol Daily action type
    Updated 2025-03-02
    SELECT
    DATE_TRUNC('day', block_timestamp) as date,
    action_type,
    COUNT(*) as daily_action_count
    FROM solana.marinade.ez_liquid_staking_actions
    WHERE block_timestamp >= DATEADD('day', -30, CURRENT_DATE)
    GROUP BY 1, 2
    ORDER BY 1 DESC, 2;
    Last run: 13 days ago
    DATE
    ACTION_TYPE
    DAILY_ACTION_COUNT
    1
    2025-03-02 00:00:00.000claim39
    2
    2025-03-02 00:00:00.000deposit51
    3
    2025-03-02 00:00:00.000depositStakeAccount1
    4
    2025-03-02 00:00:00.000orderUnstake12
    5
    2025-03-01 00:00:00.000claim1
    6
    2025-03-01 00:00:00.000deposit1955
    7
    2025-03-01 00:00:00.000depositStakeAccount9
    8
    2025-03-01 00:00:00.000orderUnstake32
    9
    2025-02-28 00:00:00.000claim42
    10
    2025-02-28 00:00:00.000deposit1384
    11
    2025-02-28 00:00:00.000depositStakeAccount12
    12
    2025-02-28 00:00:00.000orderUnstake19
    13
    2025-02-27 00:00:00.000claim2
    14
    2025-02-27 00:00:00.000deposit121
    15
    2025-02-27 00:00:00.000depositStakeAccount30
    16
    2025-02-27 00:00:00.000orderUnstake25
    17
    2025-02-26 00:00:00.000claim77
    18
    2025-02-26 00:00:00.000deposit94
    19
    2025-02-26 00:00:00.000depositStakeAccount121
    20
    2025-02-26 00:00:00.000orderUnstake29
    ...
    124
    5KB
    1s