-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
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
Nonce tracking #155
Comments
We're exploring using a different provider API. I haven't tested this yet but I think it would also be composable with a metamask provider if required. Also, in any case there should be some extension possible on the controller methods (and any other methods that can lead to transactions) to be able to override some TX parameters. |
As far as I know (not sure if they added it in v5 beta), ethers also does not track nonces. Some workarounds: ethers-io/ethers.js#319 I think you would need to track this in memory in either |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
When running a test suite of a flow I want to execute, I run into 'nonce too low' errors.
Option a:
IdentityController.addService
returns a txHash I could use to poll for a receiptIdentityController.addPublicKey
returns true, so no way I can handle it because the txHash is not storedOption b:
Option c:
What approach do you think is best?
The text was updated successfully, but these errors were encountered: