flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Sum LUNA Staked by Top 25 Delegators
boomer77
Sum LUNA Staked by Top 25 Delegators
Updated 2021-11-10
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
with
x
as
(
select
delegator_address
,
sum
(
event_amount
)
as
LUNA_staked
from
terra
.
staking
where
action
=
'delegate'
and
currency
=
'LUNA'
and
tx_status
=
'SUCCEEDED'
group
by
1
order
by
2
DESC
limit
25
)
select
sum
(
LUNA_staked
)
from
x
Results
Run a query to Download Data