Hello, I want to use Sync and Watch Address https://docs.moralis.io/moralis-server/automatic-transaction-sync/historical-transactions, but I just need to call a cloud function when transfers (tokens, nfts) are made, but without saving the data in the database, since it is not necessary and by the way also eliminate the other classes such as balance/pending since they are not needed and take up space unnecessary
For now I thought of using an afterSave
in xxxTokenTransfers
and delete all the rows of the other classes and remove the object with that id from xxxTokenTransfers
, but maybe there is something more efficient.
Thank you