zakkisyedCopy of LUNA vs UST comparison
Updated 2021-12-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
--select price_luna, date_trunc('day', block_timestamp)
--FROM
SELECT date_trunc('day', block_timestamp), avg(event_amount_usd/event_amount)
--distinct(origin_address) as addresses_claimed, amount_usd
--as Total_amount_in_USD, sum(amount) as Total_tokens_claimed
--event_name, event_type, block_timestamp
from terra.transfers
where event_currency = 'LUNA'
-- group by block_timestamp
--OR event_currency = 'LUNA'
AND block_timestamp > CURRENT_DATE - 7
group by block_timestamp
order by block_timestamp desc
Run a query to Download Data