SELECT
tx.block_timestamp AS transaction_time,
tx.eth_from_address AS sender_address,
tx.eth_to_address AS receiver_address,
tx.amount AS transaction_amount,
tx.tx_hash
FROM
ethereum.core.ez_eth_transfers AS tx
WHERE
tx.eth_from_address = '0x9DBd0FFD43A3D440CEc5Eb76c3dc02B9eeA56912'
ORDER BY
tx.block_timestamp DESC
LIMIT 50; /* Limiting the result to the top 50 rows for brevity */