samanddUntitled Query
Updated 2022-02-07
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
date_trunc('hour',ab.block_timestamp) as block_hour,
case
when apt.sender = 'ki' then 'me'
else 'others' end as transaction_sender,
count(*) as transaction_count
from algorand.asset_transfer_transaction apt
left join algorand.block ab
on ab.block_id = apt.block_id
where apt.asset_receiver = 'FMBXOFAQCSAD4UWU4Q7IX5AV4FRV6AKURJQYGXLW3CTPTQ7XBX6MALMSPY'
and apt.block_timestamp::date = '2022-01-01'
group by block_hour, transaction_sender
Run a query to Download Data