PapasotgoETH Algofi
    Updated 2023-01-03
    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 = 'KATD43XBJJIDXB3U5UCPIFUDU3CZ3YQNVWA5PDDMZVGKSR4E3QWPJX67CY' AND
    asset_id = 386195940 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