adambalaSushibar Servings
Updated 2022-04-24
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
date_trunc('day',block_timestamp) as date,
sum( amount ) as unstaked ,
count(distinct origin_address)as unstakers,
count(distinct tx_id)as unstake_tx
from ethereum.udm_events
where from_address = '0x8798249c2e607446efb7ad49ec89dd1865ff4272'
and symbol = 'SUSHI'
and amount > 0 and (date)>'2022-01-01'
group by 1
Run a query to Download Data