feyikemiUnlocked
Updated 2024-10-23
9
1
2
3
4
5
6
7
8
›
⌄
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