Here is my Vue.js code snippet:
function dreamOn() {
await web3.eth.sendSignedTransaction(txFin);
return;
}
I need to send this transaction without waiting for the result of sendSignedTransaction, as it takes too long (around 5 seconds). I just want the function to continue executing in the background after initiating the transaction. Is there a way to achieve this?