MLDZMNstake2
Updated 2023-01-11
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select
BLOCK_TIMESTAMP::DATE as date,
action,
sum(AMOUNT) as volume,
avg(amount) as average_volume,
median(amount)as median_volume,
count(*) as number
from terra.core.ez_staking
where BLOCK_TIMESTAMP>='2022-12-25'
group by 1,2
Run a query to Download Data