feyikemiUnlocked
    Updated 2024-10-23
    SELECT
    DATE_TRUNC('Month', BLOCK_TIMESTAMP) AS Month,
    SUM(OLAS_AMOUNT) AS "TOTAL UNLOCKED $OLAS",
    SUM("TOTAL UNLOCKED $OLAS") OVER (ORDER BY MONTH) AS "CUMULATIVE LOCKED $OLAS"
    FROM crosschain.olas.ez_olas_locking
    WHERE EVENT_NAME = 'Withdraw'
    GROUP BY MONTH

    QueryRunArchived: QueryRun has been archived