Flipside TeamI - 1a MoM Overview ETH
    Updated 2025-03-20
    -- forked from I - 1a MoM Overview Stats @ https://flipsidecrypto.xyz/studio/queries/3ae92ef4-6907-4341-a149-7f87fa5575ed

    with eth_stats as (
    ---------------------------- GENERATE SAMPLE SPACE ---------------------------------
    with wallets as (
    SELECT
    DISTINCT wallet
    from (
    SELECT DISTINCT COALESCE(WITHDRAWAL_ADDRESS, 'empty') as wallet
    FROM ethereum.beacon_chain.ez_deposits
    WHERE 1=1
    --AND WITHDRAWAL_ADDRESS = '0x15dace490e3bee63ba9c2695ea6d29a78360dd96'
    UNION ALL
    SELECT DISTINCT COALESCE(WITHDRAWAL_ADDRESS, 'empty') as wallet
    FROM ethereum.beacon_chain.ez_withdrawals
    WHERE 1=1
    )
    )
    ,
    dates as (
    SELECT
    DISTINCT date_trunc('month', date_day) as dmonth
    from crosschain.core.dim_dates
    WHERE 1=1
    AND date_day BETWEEN '2020-11-01' AND CURRENT_DATE
    )
    ,
    sample_space as (
    SELECT
    dmonth
    , wallet
    , NULL as eth_staked
    from dates
    Last run: about 1 month ago
    DMONTH
    LABEL
    Total Stake
    TOTAL_STAKE_USD
    Validators
    Wallets
    STAKE_GROWTH
    1
    2023-09-01 00:00:00.000ETH27229933.848693353937824482.2848509351950973.5
    2
    2023-10-01 00:00:00.000ETH28005983.285155655475045194.09598751871968222.8
    3
    2023-11-01 00:00:00.000ETH28690576.966664556831107755.24978965811996452.4
    4
    2023-12-01 00:00:00.000ETH28990309.829510957424827102.4079059472030711
    5
    2024-01-01 00:00:00.000ETH29600023.875192958632565959.32529250012117522.1
    6
    2024-02-01 00:00:00.000ETH31378149.704277562154727981.80799805672225396
    7
    2024-03-01 00:00:00.000ETH32141663.898334963667118530.29910044272305212.4
    8
    2024-04-01 00:00:00.000ETH32561128.786362564498006465.342610175352294751.3
    9
    2024-05-01 00:00:00.000ETH32703222.462325364779469644.677110219762293980.4
    10
    2024-06-01 00:00:00.000ETH33283551.460693465929001767.299510401112294331.8
    11
    2024-07-01 00:00:00.000ETH34076676.635721267500046585.874510648962282642.4
    12
    2024-08-01 00:00:00.000ETH34326648.040853367995197027.683410727082263270.7
    13
    2024-09-01 00:00:00.000ETH34648912.539315168633547677.063910827792255270.9
    13
    1KB
    93s