-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Error: invalid object key - from - using Ledger Signer #936
Comments
Can you provide a code snippet? :) |
Hi,
Our use case is calling a |
I had the exact same issue, it seems sendTransaction does not work while signTransaction works. Indeed I broadcasted the rawTransaction from a signTransaction and the tx was working as intended, however using the sendTransaction I got the following error:
The code creating the error
the code working as intended:
|
Oh, and the chainId was not automatically added by the signer, might be related. |
Hey @ricmoo :) No pressure, but was wondering: should I do a hot fix locally are do you plan to release the bug fix soon? Thanks!! |
I’m trying to burn through the backlog right now, but this might be a week or two before I get this far back. If you can hotfix it for now, go for it. I’ll comment this ticket (which will notify you) once I get to it. :) |
(I think this should be an easy fix, so I might take a look at this shortly actually; I’m having issues with my mocha reporter in the browser, and it’s easy to sneak in a few easy tasks with updates to the test case stuff ;)) |
that would be amazing <3 thanks for the quick reply anyway! You rock man |
This should be fixed now, please try it if you have any issues let me know. :) Thanks! :) |
Hi,
I have noticed there is a similar issue to #862 when using the
LedgerSigner
.The fix that worked out for me locally was to add
from
toallowedTransactionKeys
array in@ethersproject/transaction
.https://github.com/ethers-io/ethers.js/blob/master/packages/transactions/src.ts/index.ts#L72
The text was updated successfully, but these errors were encountered: