cypherUntitled Query
Updated 2022-01-18
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select
-- *
date_trunc('day', block_timestamp) as block_day,
sum(event_amount_usd)
from terra.reward
where tx_status = 'SUCCEEDED'
and validator_address_name = 'operator_address'
and block_day >= '2021-1-1' and block_day <= '2021-12-31'
group by 1
order by 1
-- limit 100
Run a query to Download Data