Add disabledWallets prop, hide UniSat by default#25
Open
BlobMaster41 wants to merge 1 commit into
Open
Conversation
UniSat does not support MLDSA signatures or full OPNet transaction signing.
Rather than removing it entirely, this adds a `disabledWallets` prop to
WalletConnectProvider that defaults to `[SupportedWallets.UNISAT]`.
Developers who want UniSat can opt in with `disabledWallets={[]}`.
Developers who want to hide other wallets can pass a custom array.
Default behavior: UniSat is hidden from the modal.
Opt-in behavior: pass disabledWallets={[]} to show all wallets.
This was referenced Apr 20, 2026
feat: accept optional walletProvider to unblock third-party OPNet wallets
btc-vision/transaction#128
Open
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.
Summary
UniSat does not support MLDSA signatures or full OPNet transaction signing. Instead of removing it entirely, this adds a configurable
disabledWalletsprop toWalletConnectProvider.Default behavior: UniSat is hidden from the connect modal.
Opt-in: Pass
disabledWallets={[]}to show all registered wallets.API
Changes
Single file change in
WalletConnectProvider.tsx:disabledWalletsprop (defaults to[SupportedWallets.UNISAT])allWallets,availableWallets, and the fallback list through the disabled filterSupersedes #24 based on community feedback.