-
Notifications
You must be signed in to change notification settings - Fork 983
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
Murisi/masp for namadillo #4127
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
44c5f03
Implemented MASP signing using the hardware wallet.
murisi 5fd0281
Factored out the logic for MASP hardware wallet signing.
murisi b78d8bf
Expand MASP hardware wallet support to other transaction types.
murisi 9e7c974
Separate the storage of shielded keys from their birthdays.
murisi 381531b
Never use the hardware wallet to sign the fee header alone. Always en…
murisi 0ef7b66
Moved the shielded keys used in the integration tests into the localn…
murisi 2d8c41c
Dont do a dry run if using a device in the MASP integration tests.
murisi 3e72fe1
Always sign MASP Transactions before dumping because randomness param…
murisi fd48de2
test/e2e/masp: add support for testing with HW wallet
tzemanovic bdd8e9f
Sometimes use literals instead of aliases in the IBC tests.
murisi 706a143
Make shielded balance checking more robust for IBC tests.
murisi e59aaf6
Adjust integration tests to work with both hardware and localnet gene…
murisi 2105731
Make the the software wallet support the old Store format.
murisi 79106c5
Test that the transfer source now displays as a viewing key.
murisi bec57d6
Downgraded the ledger-namada-rs branch. Now print error messages when…
murisi 42b0ac3
Hide modified ZIP 32 behind a CLI flag.
murisi 35b42d6
Change the Hermes branch used by the CI.
murisi 49a4a5d
Added a changelog entry.
murisi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Allow MASP transaction building without knowledge of the spend authorization | ||
key. ([\#4127](https://github.com/anoma/namada/pull/4127)) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.10.4-namada-beta17-rc2 | ||
1.10.4-namada-beta18-test |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why did this become async?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's taken from #3797 without shielded keys support in HW wallet - we unfortunately already have some blocking calls mixed in the client already (e.g. wallet load) but I think we should just go with it and convert the blocking stuff to async