Hi all,
Suppose I have this code:
const message = await Moralis.executeFunction(options)
.then( () => {
console.log("success)
})
.catch((e) => {
console.log(e);
})
What is it exactly that would make the code output success or error?
The tx getting into the node’s mempool?