kingnedustaking
    Updated 2025-01-15
    with stakes as (
    select
    date_trunc('day',block_timestamp::date) as date,
    tx_id,
    action_type,
    provider_address,
    deposit_amount_usd
    from solana.marinade.ez_liquid_staking_actions
    where block_timestamp::date between '2024-01-01' and '2025-01-01'
    )

    select
    date,
    count(tx_id) as total_stakes,
    sum(deposit_amount_usd) as total_amount_staked_usd
    from stakes
    where action_type = 'deposit'
    group by 1



    Last run: 5 days ago
    DATE
    TOTAL_STAKES
    TOTAL_AMOUNT_STAKED_USD
    1
    2024-10-03 00:00:00.0002252825230.89
    2
    2024-11-05 00:00:00.000199825170.43
    3
    2024-11-15 00:00:00.000146348820.4
    4
    2024-01-18 00:00:00.000317395117732.56
    5
    2024-02-11 00:00:00.000247305785008.67
    6
    2024-04-18 00:00:00.000359436225.72
    7
    2024-05-30 00:00:00.0002681029952.51
    8
    2024-03-24 00:00:00.00024148603462.61
    9
    2024-01-22 00:00:00.00021071881885.81
    10
    2024-09-15 00:00:00.00077537370.39
    11
    2024-02-05 00:00:00.000232363312899.32
    12
    2024-04-08 00:00:00.000282727066.81
    13
    2024-06-16 00:00:00.000736383270.28
    14
    2024-03-05 00:00:00.000104041416091.55
    15
    2024-07-02 00:00:00.0005732943735.81
    16
    2024-11-09 00:00:00.000161180805.38
    17
    2024-12-19 00:00:00.000198614939.13
    18
    2024-12-25 00:00:00.0007506296281.81
    19
    2024-05-28 00:00:00.000351284901.36
    20
    2024-02-22 00:00:00.000116643210331.59
    ...
    367
    15KB
    4s