boomer77validator donation
Updated 2021-12-24
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
with raw as (select date_trunc('day', block_timestamp) as dt, sum(msg_value:amount[0]:amount/1e6) as donation, msg_value:amount[0]:denom::string as currency
from terra.msgs
where msg_value:from_address::string = 'terra1zxtczmxtw8mk8xncvr8lcq2qmvk4dz88ek6f79'
group by 1,3),
price as (select date_trunc('day', block_timestamp) as dt, avg(price_usd) as price, currency
from terra.oracle_prices
group by 1,3)
select a.dt, a.donation, a.currency, b.price, (a.donation*b.price) as donation_vol, SUM(donation_vol) OVER(ORDER BY a.dt asc ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_donation
from raw a
left join price b on a.dt = b.dt and a.currency = b.currency
Run a query to Download Data