LTirrell2022-01-14_thor_operators
Updated 2022-01-20
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
›
-- Node Operators Over Time
-- How many unique node operators have ever bonded $RUNE? How has that number progressed over time?
--
-- select
-- -- distinct node_address
-- *
-- from thorchain.new_node_events
-- limit 10
-- select*
-- from thorchain.bond_actions
-- where to_address in (
select * from thorchain.bond_actions
-- where from_address in (
-- select
-- distinct node_address
-- from thorchain.new_node_events)
-- -- limit 10
-- select
-- to_address as node_operator,
-- sum(asset_usd) as total_rewards
-- from thorchain.bond_actions
-- where bond_type = 'bond_reward'
-- and to_address in
-- (select distinct node_address from thorchain.new_node_events)
-- group by node_operator
Run a query to Download Data