jkhuhnke11Volume
Updated 2021-11-10
9
1
2
3
4
5
6
7
8
›
⌄
Select date_trunc('day', block_timestamp) as metric_date,
event_currency,
sum(event_amount) as volume
from gold.near_events
where metric_date >= getdate() - interval '6 months'
and event_currency IN('NEAR', 'ZEST')
group by 1, 2
order by 1 desc
Run a query to Download Data