forked from shapeshift/hdwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
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
fix: KeepKey produces accurate EIP-712 eth_signTypedData_v4 signatures #1
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…by recovering the signing address + refactor the Ethereum Sandbox section + tech debt + random bug fixes caught along the way + messing around with tsconfig
This reverts commit b5fa182 and resolves all conflicts Lesson for future: use `git reset` to "revert" a merge commit or bad things can happen
Co-authored-by: kaladinlight <[email protected]>
…net-type nightmare). Remove some tsconfig changes based on PR feedback.
This change is included in PR #3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Duplicate of this shapeshift/hdwallet PR: shapeshift#649
Officially closes the hdwallet part of issue shapeshift#578, which likely never worked.
Related issue: shapeshift/web#5384
I went with the
EthereumSignTypedHash
approach for ALL TypedData messages after consulting with @BitHighlander. It seems that the KeepKey firmware is missing theEthereumTypedDataStructRequest
type, which would be required for a fully human readable, eip-712-compatible message to be displayed on the device screen.Fortunately, the
EthereumSignTypedHash
approach allows the KeepKey to at least sign the v4 messages, which for end-users that means being able to do modern web3 interactions like buying and selling NFTs on OpenSea, for example.-The bulk of the fix is in packages/hdwallet-keepkey/src/ethereum.ts
recoverTypedSignature
check to the sandbox so you know right away if the signature that the KeepKey spits out is accurate.-I refactored the Ethereum sandbox tests too. That file is getting way too large and repetitive, but still is the best way to test with KeepKey.
Thanks!
*KeepKey Bridge didn't seem to be working for me in the sandbox so I used the regular webusb option instead.