lidoETH Deposited to BeaconChain through Lido middleware
    Updated 15 hours ago
    /*
    Calculation details:
    - Gather all deposit and withdrawal txs with project labels:
    - Get all deposit txs and assign project labels to them (using dune.lido.result_eth_depositors_labels)
    - Get all withdrawal txs with project labels to them from dune.lido.result_withdrawals_transactions_assigned_to_projects
    - Calculate ETH deposits for Lido (daily and cumulative)
    - Calculate Total ETH deposits for all projects (daily and cumulative)
    - Finally we get a resulting table with daily and cumulative deposits for Lido, Other Projects and Total.
    */

    -- generates a calendar from '2020-11-03' to the current date
    WITH recursive calendar AS (
    SELECT CAST('2020-11-03' AS DATE) AS day
    UNION ALL
    SELECT DATEADD(day, 1, day)
    FROM calendar
    WHERE day < CURRENT_DATE
    )

    -- calculates daily ETH withdrawals + assigns principal withdrawals
    , all_withdrawals_daily AS (
    SELECT
    BLOCK_TIMESTAMP AS time
    , WITHDRAWAL_ADDRESS_NAME AS name
    , SUM(WITHDRAWAL_AMOUNT) AS amount
    , SUM(CASE
    WHEN WITHDRAWAL_AMOUNT BETWEEN 20 AND 32 THEN WITHDRAWAL_AMOUNT
    WHEN WITHDRAWAL_AMOUNT > 32 THEN 32
    ELSE 0
    END) AS withdrawn_principal
    FROM ethereum.beacon_chain.ez_withdrawals
    GROUP BY 1,2
    )

    -- calculates daily deposits/withdrawals by projects
    , all_txns AS (
    Last run: about 15 hours agoAuto-refreshes every 12 hours
    TIME
    TOTAL_DEPOSITED
    LIDO_DEPOSITED
    OTHERS
    LIDO_SHARE
    1
    2025-05-29 00:00:00.00034517305.62080578979292.8418699325538012.778935826.013886891
    2
    2025-05-28 00:00:00.00034513699.92080578980892.8418699325532807.078935826.021240442
    3
    2025-05-27 00:00:00.00034445774.13248938992892.8418699325452881.290619426.107390727
    4
    2025-05-26 00:00:00.00034434978.55767078992892.8418699325442085.715800726.115575553
    5
    2025-05-25 00:00:00.00034568228.74930578992924.8418699325575303.907435726.015000384
    6
    2025-05-24 00:00:00.00034578195.73174298993660.8418699325584534.88987326.009630206
    7
    2025-05-23 00:00:00.00034597108.65974139001500.8418699325595607.817871426.018072581
    8
    2025-05-22 00:00:00.00034565116.41677719001500.8418699325563615.574907226.042153984
    9
    2025-05-21 00:00:00.00034601386.03804799022556.8418699325578829.19617826.075709314
    10
    2025-05-20 00:00:00.00034552043.23891679022556.8418699325529486.397046826.112947299
    11
    2025-05-19 00:00:00.00034537401.83825719054140.8418699325483260.996387226.215466016
    12
    2025-05-18 00:00:00.00034561372.99267639117564.8418699325443808.150806326.380794663
    13
    2025-05-17 00:00:00.00034537964.92260119117564.8418699325420400.080731126.398674219
    14
    2025-05-16 00:00:00.00034551634.83797579117884.8418699325433749.996105826.389156069
    15
    2025-05-15 00:00:00.00034669466.42012849118268.8339968525551197.586131626.300574469
    16
    2025-05-14 00:00:00.00034651792.22562849119708.8339968525532083.391631626.318144743
    17
    2025-05-13 00:00:00.00034653157.60162849121436.8339968525531720.767631626.322094335
    18
    2025-05-12 00:00:00.00034626031.81258289123420.8339968525502610.978585926.348444671
    19
    2025-05-11 00:00:00.00034537449.89852559124444.8339968525413005.064528626.41898826
    20
    2025-05-10 00:00:00.00034514162.48431739126012.8339968525388149.650320526.441356757
    ...
    1669
    125KB
    113s