We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the layer zero bridge when bridging from arbitrum we were receiving this error even though the transaction went through.
So the UI displayed an error even though the transaction was a success.
The error originated from this function yield unsignedTransaction.signAndSubmitTransaction(srcWallet.signer);
yield unsignedTransaction.signAndSubmitTransaction(srcWallet.signer);
A workaround we used in the catch statement was
} catch (e) { if (JSON.stringify(e).includes("JsonRpcEngine: Response has no error or result")) { // Display success message
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using the layer zero bridge when bridging from arbitrum we were receiving this error even though the transaction went through.
So the UI displayed an error even though the transaction was a success.
The error originated from this function
yield unsignedTransaction.signAndSubmitTransaction(srcWallet.signer);
A workaround we used in the catch statement was
The text was updated successfully, but these errors were encountered: