select block_timestamp::date as fecha,
count(tx_id) as fee_txs,
count(distinct sender) as unique_wallets,
--mints / unique_wallets as mint_per_wallet,
sum(amount) as fee_volume,
sum(fee_volume) over (order by fecha) as cum_fee
from algorand.payment_transaction
where receiver = 'MTMJ5ADRK3CFG3HGUI7FS4Y55WGCUO5CRUMVNBZ7FW5IIG6T3IU2VJHUMM'
group by fecha
order by fecha