flipside
Products
For Protocols
For Analysts
For Explorers
About
Log in
Become a Partner
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 2025-04-24
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
Last run: about 2 months ago
STAKE_POOL_NAME
TOTAL_SOL_WITHDRAWN
1
jito
542605853478748
2
blazestake
158084247815842
3
jpool
422875911381
1
3
80B
1s