Ali3NGovernance Voting Stats (Top 5 Best Terra Validators By Eclipse Score)
Updated 2023-02-05
999
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
27
28
29
30
31
32
33
34
35
36
›
⌄
with terravalidators as (
select attribute_value as validator_address,
REPLACE(ATTRIBUTE_VALUE, 'valoper', '') as validator_address1,
left(validator_address1, 38) as Account_address1
from terra.core.fact_msg_attributes
where ATTRIBUTE_KEY= 'validator'
and tx_succeeded = 'TRUE'),
TotalProposalst as (
select count (distinct proposal_id) as Total_Proposals_Count
from terra.core.fact_governance_votes
where tx_succeeded = 'TRUE'),
DelegateTable2 as (
select validator_address,
sum (amount) as delegate_amount
from terra.core.ez_staking
where action ilike 'delegate'
and tx_succeeded = 'TRUE'
group by 1),
UndelegateTable2 as (
select validator_address,
sum (amount) as undelegate_amount
from terra.core.ez_staking
where action ilike 'undelegate'
and tx_succeeded = 'TRUE'
group by 1),
RedelegateTable2 as (
select validator_address,
sum (amount) as redelegate_amount
from terra.core.ez_staking
where action ilike 'redelegate'
and tx_succeeded = 'TRUE'
group by 1),
Run a query to Download Data