vendettaRealms whale power
Updated 2022-08-31
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
WITH whales AS
(
SELECT VOTER AS WHALE,SUM(VOTE_WEIGHT)
FROM solana.core.fact_proposal_votes
WHERE GOVERNANCE_PLATFORM = 'realms'
GROUP BY 1
ORDER BY 2 DESC
limit 10
)
SELECT (COUNT(DISTINCT WHALE) / COUNT(DISTINCT VOTER)) * 100 as whale_power
FROM whales, solana.core.fact_proposal_votes
WHERE GOVERNANCE_PLATFORM = 'realms'
Run a query to Download Data