This would be an example of the events I'm trying to pull back and have them all decrypted:
const events = await ndk.fetchEvents({ kinds: [7376], authors: [serviceUserResponse.pubkey] });
for (const whe of walletHistoryEvents) {
const res = await ndk.signer.nip44Decrypt(ndkUser, whe.content);
console.log(res);
}