MLDZMNLS 4
    Updated 2024-04-21
    -- Trend of withdrawers from liquid staking platforms in the past 3 months
    select
    date_trunc('day', BLOCK_TIMESTAMP) as day,
    PLATFORM,
    count(distinct STAKER) as "Withdrawer"
    from
    ethereum.defi.ez_liquid_staking_withdrawals
    where
    Block_timestamp >= current_date - INTERVAL '3 MONTH'
    group by
    day,
    PLATFORM
    QueryRunArchived: QueryRun has been archived