select trx.block_timestamp, trx.tx_id, trx.amount, lbs.label, trx.sender
from algorand.payment_transaction trx
left join algorand.labels lbs on lbs.address = trx.sender
where receiver='2XBL47CKYWTNAIVUQCTAMFBL75EXXRT3TBG2ZK7SOG7MDBER7Q3XNL77XQ'
and amount != 0
and amount is not null
and date(block_timestamp)<'2022-03-01' -- there is another donation but date is null, then dashboard give error
order by block_timestamp