Gathering detailed insights and metrics for @walletconnect/react-native
Gathering detailed insights and metrics for @walletconnect/react-native
Gathering detailed insights and metrics for @walletconnect/react-native
Gathering detailed insights and metrics for @walletconnect/react-native
@walletconnect/react-native-compat
Shims for WalletConnect Protocol in React Native Projects
@walletconnect/environment
Environment utilities
@walletconnect/modal-react-native
Simplest and most minimal way to connect your users with WalletConnect.
@walletconnect/react-native-dapp
WalletConnect for React Native dapps
npm install @walletconnect/react-native
Typescript
Module System
Node Version
NPM Version
@walletconnect/signer-connection@2.21.4
Updated on Jun 25, 2025
@walletconnect/core@2.21.4
Updated on Jun 25, 2025
@walletconnect/types@2.21.4
Updated on Jun 25, 2025
@walletconnect/react-native-compat@2.21.4
Updated on Jun 25, 2025
@walletconnect/universal-provider@2.21.4
Updated on Jun 25, 2025
@walletconnect/ethereum-provider@2.21.4
Updated on Jun 25, 2025
TypeScript (98.94%)
JavaScript (0.3%)
Kotlin (0.3%)
Shell (0.15%)
Ruby (0.14%)
Objective-C++ (0.12%)
Dockerfile (0.02%)
Objective-C (0.02%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
1,554 Stars
6,580 Commits
748 Forks
72 Watchers
158 Branches
151 Contributors
Updated on Jul 14, 2025
Latest Version
1.0.0
Package Id
@walletconnect/react-native@1.0.0
Unpacked Size
693.96 kB
Size
167.40 kB
File Count
8
NPM Version
6.13.7
Node Version
10.20.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
React Native Client for WalletConnect
For more details, read the documentation
1// Install NPM Package 2 3yarn add @walletconnect/react-native 4 5# OR 6 7npm install --save @walletconnect/react-native 8 9// Polyfill NodeJS modules for React-Native 10 11npm install --save rn-nodeify 12 13rn-nodeify --install --hack
1import RNWalletConnect from "@walletconnect/react-native"; 2 3// Create WalletConnector 4const connector = new RNWalletConnect( 5 { 6 uri: "wc:8a5e5bdc-a0e4-47...TJRNmhWJmoxdFo6UDk2WlhaOyQ5N0U=", // Required 7 }, 8 { 9 clientMeta: { 10 // Required 11 description: "WalletConnect Developer App", 12 url: "https://walletconnect.org", 13 icons: ["https://walletconnect.org/walletconnect-logo.png"], 14 name: "WalletConnect", 15 }, 16 push: { 17 // Optional 18 url: "https://push.walletconnect.org", 19 type: "fcm", 20 token: token, 21 peerMeta: true, 22 language: language, 23 }, 24 }, 25); 26 27// Subscribe to session requests 28connector.on("session_request", (error, payload) => { 29 if (error) { 30 throw error; 31 } 32 33 // Handle Session Request 34 35 /* payload: 36 { 37 id: 1, 38 jsonrpc: '2.0'. 39 method: 'session_request', 40 params: [{ 41 peerId: '15d8b6a3-15bd-493e-9358-111e3a4e6ee4', 42 peerMeta: { 43 name: "WalletConnect Example", 44 description: "Try out WalletConnect v1.x.x", 45 icons: ["https://example.walletconnect.org/favicon.ico"], 46 url: "https://example.walletconnect.org" 47 } 48 }] 49 } 50 */ 51}); 52 53// Subscribe to call requests 54connector.on("call_request", (error, payload) => { 55 if (error) { 56 throw error; 57 } 58 59 // Handle Call Request 60 61 /* payload: 62 { 63 id: 1, 64 jsonrpc: '2.0'. 65 method: 'eth_sign', 66 params: [ 67 "0xbc28ea04101f03ea7a94c1379bc3ab32e65e62d3", 68 "My email is john@doe.com - 1537836206101" 69 ] 70 } 71 */ 72}); 73 74connector.on("disconnect", (error, payload) => { 75 if (error) { 76 throw error; 77 } 78 79 // Delete connector 80});
1// Approve Session 2connector.approveSession({ 3 accounts: [ 4 '0x4292...931B3', 5 '0xa4a7...784E8', 6 ... 7 ], 8 chainId: 1 9}) 10 11// Reject Session 12connector.rejectSession({ 13 message: 'OPTIONAL_ERROR_MESSAGE' 14}) 15 16 17// Kill Session 18connector.killSession()
1// Approve Call Request 2connector.approveRequest({ 3 id: 1, 4 result: "0x41791102999c339c844880b23950704cc43aa840f3739e365323cda4dfa89e7a", 5}); 6 7// Reject Call Request 8connector.rejectRequest({ 9 id: 1, 10 error: { 11 message: "OPTIONAL_ERROR_MESSAGE", 12 }, 13});
No vulnerabilities found.
Reason
30 commit(s) out of 30 and 9 issue activity out of 30 found in the last 90 days -- score normalized to 10
Reason
all last 30 commits are reviewed through GitHub
Reason
no vulnerabilities detected
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
update tool detected
Details
Reason
publishing workflow detected
Details
Reason
branch protection is not maximal on development and all release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 5
Details
Reason
no badge detected
Reason
non read-only tokens detected in GitHub workflows
Details
Reason
0 out of 5 artifacts are signed or have provenance
Details
Reason
security policy file not detected
Reason
project is not fuzzed
Score
Last Scanned on 2022-08-15
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More