nitsDaily UnStakes
Updated 2022-05-02
99
1
2
3
4
5
6
7
8
9
10
›
⌄
SELECT date(block_timestamp) as day, sum(amount) as total_amt,
sum(total_amt) over (order by day) as cumulative_total_amt
from
(SELECT * from ethereum.udm_events
where contract_address = '0x8798249c2e607446efb7ad49ec89dd1865ff4272'
and symbol ='xSUSHI'
and _address = '0x0000000000000000000000000000000000000000' )
where day >= '2022-01-01'
GROUP by 1
-- limit 100
Run a query to Download Data