select date_trunc('day',block_timestamp) as date,count(distinct ASSET_RECEIVER) as wallets,count(distinct tx_id) as Transactions, sum(ASSET_AMOUNT)/1e6 as amount
FROM algorand.asset_transfer_transaction
where sender='EHKPJLIA2UAUDIGUF2T2XPKZTIFFO2HW56TZGL62SB3C4Q4IDT7ADW7BO4'
group by 1