MostlyData_Top 10 Validator - Monthly performance (Cosmos)
Updated 2023-11-28
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 staking_data as(
select
block_timestamp,
tx_id,
msg_index,
msg_type,
msg_group,
attribute_key,
attribute_value
from cosmos.core.fact_msg_attributes
where block_timestamp > current_date() - interval '1 month'
and (
msg_type = 'delegate'
or msg_type = 'unbond'
or msg_type = 'redelegate'
or msg_type = 'message'
)
),
staking_data_past as(
select
block_timestamp,
tx_id,
msg_index,
msg_type,
msg_group,
attribute_key,
attribute_value
from cosmos.core.fact_msg_attributes
where block_timestamp < current_date() - interval '1 month'
and block_timestamp > current_date() - interval '2 month'
and (
msg_type = 'delegate'
or msg_type = 'unbond'
Run a query to Download Data