davidwallUntitled Query
Updated 2023-01-18
9
1
2
3
4
5
6
7
8
9
›
⌄
--credit : https://app.flipsidecrypto.com/velocity/queries/5a5640fb-b819-4afb-bad5-defeea365e35
select trunc(block_timestamp,'day') as date,
project_name,
sum(amount/pow(10,6)) as volume_transferred
from terra.core.ez_transfers x
join terra.core.dim_address_labels y on x.receiver=y.address
where block_timestamp>=current_date - 30 and currency='uluna'
group by 1,2
Run a query to Download Data