You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Prevent infinite recursion in crypto.subtle polyfill (#133)
## Explanation
The `ed25519` polyfill in the Solana Snap is broken when anything but
the `ed25519` algorithm is used. This prevents us from using the newest
version of `key-tree` which has a bunch of performance improvements.
This PR corrects the polyfill so it no longer infinitely recurses and
bumps `key-tree` back to the latest version.
Copy file name to clipboardExpand all lines: packages/solana-wallet-snap/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
12
-**BREAKING:** Removed the legacy snap-hosted send dialog (`startSendTransactionFlow` RPC and `features/send` UI). Send is now handled exclusively through the unified send flow client methods (`confirmSend`, `onAmountInput`, `onAddressInput`). ([#130](https://github.com/MetaMask/internal-snaps/pull/130))
13
13
-**BREAKING:** Removed the deprecated `getFeeForTransaction` RPC. Use the `computeFee` client request instead. ([#130](https://github.com/MetaMask/internal-snaps/pull/130))
14
14
15
+
### Fixed
16
+
17
+
- Bump `@metamask/key-tree` from `9.1.2` to `^10.1.1` ([#133](https://github.com/MetaMask/internal-snaps/pull/133))
0 commit comments