Can I subscribe to wallet events in a cloud function?

Hi, I am new to Moralis and not sure if full capabilities yet, but couldn’t find an answer to what I’m trying to do.

I want to listen for a Users Wallet address, but constantly. And once a transaction is complete I’d like to send an email out.

I understand I can subscribe to events on the client, but I would still like it to listen for events even after the user has left the app.

Please let me know if it’s possible.

Thank you!

you can use a hook like afterSave where you can make a http request to an url, as an example

you can use web hooks directly too

Can webhooks or Jobs subscribe to a users wallet as well ? I’m not only to look at subscribing to contracts but wallets as well. Thank you in advance!

You mean to add a watch address programmatically from cloud code? A wallet address doesn’t have events, only transfers.

I see. Is there a way to listen to multiple NFT contracts? With that info I can get the user I think.

you can add multiple contracts to event sync (by creating separate event syncs), if that is all you need