kasadeghUntitled Query
Updated 2022-11-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
SELECT
'algorand' as chain,
DAYNAME(block_timestamp) as day,
hour(block_timestamp) as hour,
sum(amount) as total_volume,
avg(amount) as avg_volume,
median(amount) as median_volume,
count(distinct TX_ID) as tx_count,
count(DISTINCT ASSET_SENDER) as senders_cnt,
count(DISTINCT RECEIVER) as receivers_cnt
FROM algorand.core.ez_transfer
where asset_id = '31566704'
and amount!=0
GROUP BY 1,2,3
order by 2
Run a query to Download Data