-
Notifications
You must be signed in to change notification settings - Fork 563
[Chore] Add missing walletconnect exports to RN wallet exports #3444
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
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
🦋 Changeset detectedLatest commit: fe77516 The changes in this PR will be included in the next version bump. This PR includes changesets to release 8 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Your org requires the Graphite merge queue for merging into mainAdd the label “merge-queue” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @gregfromstl and the rest of your teammates on |
CodSpeed Performance ReportMerging #3444 will not alter performanceComparing Summary
|
size-limit report 📦
|
c12b28c
to
9960e9a
Compare
@@ -95,6 +95,19 @@ export { type WalletInfo } from "../wallets/wallet-info.js"; | |||
|
|||
export { createWalletAdapter } from "../adapters/wallet-adapter.js"; | |||
|
|||
// wallet connect | |||
export { |
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.
does this... work in react native?
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.
generally makes sense, just unsure if walletconnectreceiver works in react native?
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3444 +/- ##
=======================================
Coverage 61.14% 61.14%
=======================================
Files 891 891
Lines 67375 67375
Branches 3498 3498
=======================================
Hits 41196 41196
Misses 25496 25496
Partials 683 683
*This pull request uses carry forward flags. Click here to find out more. |
### TL;DR Adds wallet connect functions to react native. ### What changed? - Added `createWalletConnectClient`, `createWalletConnectSession`, `disconnectWalletConnectSession`, `getActiveWalletConnectSessions`, and `DefaultWalletConnectRequestHandlers` exports to `wallets.native.ts` - Added type exports `WalletConnectClient` and `WalletConnectSession` to `wallets.native.ts` ### How to test? 1. Import the new functions and types in a React Native project. 2. Test creating, managing, and disconnecting WalletConnect sessions. ### Why make this change? To provide WalletConnect support in the React Native SDK for better wallet management and interoperability. ---
9960e9a
to
fe77516
Compare
Merge activity
|
TL;DR
Adds wallet connect functions to react native.
What changed?
createWalletConnectClient
,createWalletConnectSession
,disconnectWalletConnectSession
,getActiveWalletConnectSessions
, andDefaultWalletConnectRequestHandlers
exports towallets.native.ts
WalletConnectClient
andWalletConnectSession
towallets.native.ts
How to test?
Why make this change?
To provide WalletConnect support in the React Native SDK for better wallet management and interoperability.
PR-Codex overview
This PR adds wallet connect functionality to a React Native app.
Detailed summary
wallets.native.ts