fix: emit proper events when extension provider connection is cancelled or rejected#1341
Open
unickhow wants to merge 2 commits intoMetaMask:mainfrom
Open
Conversation
| expect(instance.activeProvider).toStrictEqual((global.window as any).extension); | ||
|
|
||
| consoleWarnSpy.mockRestore(); | ||
| }); |
There was a problem hiding this comment.
Bug: SDK Provider Overwrite Causes Test Failures
The connectWithExtensionProvider function unconditionally assigns instance.sdkProvider = instance.activeProvider before attempting connection. This overwrites the original SDK provider if the function is called multiple times. In error scenarios, this also causes instance.sdkProvider to always be truthy, which incorrectly triggers provider restoration in tests and prevents verifying behavior when no previous provider is available.
Additional Locations (1)
This file contains hidden or 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
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.
Explanation
This PR fixes an issue where SDK hooks do not receive feedback when users cancel or close the MetaMask extension connection window. Previously reported in issues #214 and partially addressed in #1202, this problem persisted because
connectWithExtensionProviderwas silently catching and ignoring connection errors without emitting appropriate events.References
Checklist
Note
On extension connect error, emit ConnectWithResponse, optionally send REJECTED analytics, restore original provider, and rethrow; tests updated for these behaviors.
connectWithExtensionProvider):MetaMaskSDKEvent.ConnectWithResponsewith{ error }on failure.TrackingEvents.REJECTEDwhen analytics enabled.instance.activeProviderandwindow.ethereumfromsdkProviderif present.STORAGE_PROVIDER_TYPE=extension, setextensionActive, emitProviderUpdate (EXTENSION), sendSDK_USE_EXTENSIONanalytics.connectWithExtensionProvider.test.ts):sdkProvider.Written by Cursor Bugbot for commit b8a7195. This will update automatically on new commits. Configure here.