-
Notifications
You must be signed in to change notification settings - Fork 4
fix: support P-256 V2 session vouchers #58
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| wallet-cli: patch | ||
| --- | ||
|
|
||
| Support P-256 access keys for V2 MPP session vouchers. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,9 +39,9 @@ | |
| "dependencies": { | ||
| "accounts": "0.14.11", | ||
| "incur": "0.4.8", | ||
| "mppx": "0.7.0", | ||
| "mppx": "0.8.9", | ||
| "undici": "8.5.0", | ||
| "viem": "2.53.1" | ||
| "viem": "2.54.0" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When Useful? React with 👍 / 👎. |
||
| }, | ||
| "devDependencies": { | ||
| "@types/node": "25.9.2", | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
For reusable V2 session vouchers,
paySessionAndRetryRequestpasses adescriptorin the credential context, but after this upgrade the defaultsessionexport frommppx/clientis still the legacy session method and does not accept the descriptor-only voucher context; the P-256 V2 path this commit is trying to enable therefore still fails when reusing a stored precompile session. Use the new V2 session method export from mppx (or a version wheresessionaliases it) before relying on descriptor-based vouchers.Useful? React with 👍 / 👎.