yasmin-n-d-r-hDELEGATOR_ADDRESS floid 3
Updated 2022-12-20Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
›
⌄
select
DELEGATOR_ADDRESS,
label,
sum(
amount / pow(10, decimal)
) as volume,
COUNT(distinct TX_ID) as transection_stakings
from
osmosis.core.fact_superfluid_staking x
left join osmosis.core.fact_validators y on x.validator_address = y.address
where
CURRENCY is not NULL
and label is not null
and replace(CURRENCY, 'gamm/pool/') in (
1, 678, 704, 712, 674, 722, 9, 604, 497,
812, 584, 3, 481, 42, 463, 15
)
and TX_SUCCEEDED = 'TRUE'
AND ACTION = 'delegate'
and BLOCK_TIMESTAMP :: date >= CURRENT_DATE - 90
group by
DELEGATOR_ADDRESS ,label
order by
volume DESC
limit 10
Run a query to Download Data