peteer6price
Updated 2023-01-15
9
1
2
3
4
5
›
⌄
select sum(amount) , block_timestamp::date , CASE
when action in ('Redelegate' , 'Delegate') then 'stake'
when action='Undelegate' then 'unstake' end as staking
from terra.core.ez_staking where year(block_timestamp)=2023
group by 2,3
Run a query to Download Data