flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
What was the total amount of SOL withdrawn from each stake pool in August?
maymoth55
What was the total amount of SOL withdrawn from each stake pool in August?
Updated 2024-09-11
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
›
⌄
SELECT
STAKE_POOL_NAME
,
SUM
(
AMOUNT
)
AS
TOTAL_SOL_WITHDRAWN
FROM
solana
.
defi
.
fact_stake_pool_actions
WHERE
ACTION
=
'withdraw'
AND
DATE_TRUNC
(
'month'
,
BLOCK_TIMESTAMP
)
=
'2024-08-01'
GROUP
BY
STAKE_POOL_NAME
;
Results
QueryRunArchived: QueryRun has been archived