PapasotgoBTC Algofi
Updated 2022-02-17
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
date_trunc('day',block_timestamp) as Date,
(count(DISTINCT(sender))) as Wallets,
sum(asset_amount)/100000000 as Total_Amount
from algorand.asset_transfer_transaction
WHERE
asset_receiver = 'W5UCMHDSTGKWBOV6YVLDVPJGPE4L4ISTU6TGXC7WRF63Y7GOVFOBUNJB5Q' AND
asset_id = 386192725 AND
date(block_timestamp) > '2021-12-16' and date(block_timestamp) < '2022-02-02'
group by Date
order by Date
Run a query to Download Data