Thanks @Yomoo, so just to be clear this is without having to initially installed the “Sync and Watch Plugin”?
When I run the code in the API JS console in the control panel:
Moralis.Cloud.run("watchEthAddress", {address});
I get “Moralis not defined”, but using Parse, I get no error:
Parse.Cloud.run("watchEthAddress", {address});
UPDATE:
I’ve added an address, with historical transactions, into the Sync and Watch Plugin, but no txs have been inserted into the server database.
I’ve also run this in JS API console:
const address = "0x4670565222894929fba3b6C91e92B4FFeB3F52FF"
Parse.Cloud.run("watchEthAddress", {address});
It does insert the address into a single row under watchEthAddress, no txs get synced in relation to it either.
What am I doing wrong/missing?