maymoth55Which staking pool had the most stake withdrawals in August?
    Updated 2024-09-11
    SELECT
    STAKE_POOL_NAME,
    COUNT(*) AS WITHDRAWAL_COUNT
    FROM solana.defi.fact_stake_pool_actions
    WHERE ACTION = 'withdraw'
    AND DATE_TRUNC('month', BLOCK_TIMESTAMP) = '2024-08-01'
    GROUP BY STAKE_POOL_NAME
    ORDER BY WITHDRAWAL_COUNT DESC
    LIMIT 1;

    QueryRunArchived: QueryRun has been archived