select
DATEDIFF(SECOND, min(block_timestamp),max(block_timestamp)) as time_elapsed,
count(DISTINCT receiver) as total_receiver,
count(tx_id) as total_payment_count,
sum(amount) as total_payout
from algorand.payment_transaction
where block_timestamp::date > '2022-03-30'