Questions tagged [wallet-connect]

WalletConnect is a protocol for mobile wallets to sign Ethereum and other blockchain transactions.

WalletConnect is an open protocol to communicate securely between Wallets and Dapps (Web3 Apps). The protocol establishes a remote connection between two apps and/or devices using a Bridge server to relay payloads. These payloads are symmetrically encrypted through a shared key between the two peers. The connection is initiated by one peer displaying a QR Code or deep link with a standard WalletConnect URI and is established when the counter-party approves this connection request. It also includes an optional Push server to allow Native applications to notify the user of incoming payloads for established connections.

171 questions
1
vote
0 answers

WalletConnect and Wagmi drops session on update

I try to add a "Connect Wallet" button to my dApp using WalletConnect's Web3Modal and Wagmi, but when I refresh the page the session is dropped and I need to login again. If I check any of the Web3Modal examples the wallet stays connected on…
1
vote
0 answers

WalletConnect :- Client meta the app icon not showing?

I am developing react native application, where I have used @walletconnect/react-native-dapp to connect external wallet to my app. Every thing is working as expected, only thing I am not able to setup is that when I provide clientMeta to…
Pankaj Sonava
  • 519
  • 4
  • 20
1
vote
0 answers

Hook a process to walletConnect

I've just started to use walletConnect web3Modal to handle my clients' ethereum wallet connections. Out authentication process is something like this: User connects his / her wallet to app Once the wallet is connected, A request will be sent to…
FaSh
  • 99
  • 8
1
vote
1 answer

WalletConnect stops sending requests after a few minutes

I am building a wallet app and have successfully managed to set WalletConnect V2 up so that I can pair with a dApp and then respond to requests. However, after only about 5 minutes I get this error: Error: Not initialized. subscription and then…
Jake Mulhern
  • 660
  • 5
  • 13
1
vote
0 answers

WalletConnect on iOS redirects to the MetaMask AppStore instead of opening the Metamask application

I am currently using the WalletConnect Standalone Client within my web application to perform a message signature with the Metamask application. I implement the signature method as indicated on the documentation. const message = "Hello…
Antoine
  • 47
  • 6
1
vote
0 answers

WalletConnect :- Rainbow always show MATIC when transfer other coins by WalletConnect sendTransaction in react native

I am developing react native mobile application where user can transfer their amount by external wallet (Rainbow, MetaMask). I am using 'polygon-rpc' network for my users. The thing is working as expected but when execute transfer method by my…
Pankaj Sonava
  • 519
  • 4
  • 20
1
vote
0 answers

When connect metamask in react-native

export default function Walletconnect() { const connector = useWalletConnect(); const connectWallet = React.useCallback(() => { try{ console.log("wallet"); console.log("return",connector.connect()); return…
1
vote
0 answers

How to do 'signTransaction' after authenticated by 'signPersonalMessage' by WalletConnect of '@walletconnect/react-native-dapp'?

I am developing a react native mobile app where user can connect their existing wallet(rainbow, metamask and many more) to app. I have already done the authentication part, like user can successfully connect their app wallet to app by this…
1
vote
1 answer

How can I set a breakpoint in an internal class of an Android library?

I'm trying to help debug Wallet Connect (v2) integration into an Android app written in Kotlin (I know Java, but am not an Android/Kotlin dev myself). I get an exception from the com.walletconnect:android-core library and would like to set a…
bisgardo
  • 4,130
  • 4
  • 29
  • 38
1
vote
0 answers

Unable to use @walletconnect/sign-client with angular/ionic

Trying to include @walletconnect/sign-client into my Ionic v5 project. Keep getting the following error. Not sure why. Do I need to install any specific webpack loader? [ng] ERROR in ./node_modules/@walletconnect/sign-client/dist/index.es.js…
Neil
  • 2,802
  • 8
  • 34
  • 49
1
vote
0 answers

Cannot connect the wallet with @walletconnect/react-native-dapp

I setup wallet connect following the docs https://docs.walletconnect.com/1.0/quick-start/dapps/react-native , it working , but linking to metamask or other wallet , not show end this is my code : export default function WalletConnectExperience() { …
Gia Hạo
  • 11
  • 2
1
vote
1 answer

WalletConnect connection failure iOS client

I get the following error when i try to connect iOS app to walletconnect Task .<1> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 "The network connection was lost."…
1
vote
0 answers

WalletConnect deeplink fails when in production but not locally

I tried making use of WalletConnect client on my NodeJS client using the following snippet: import WalletConnect from "@walletconnect/client"; // Create a connector const connector = new WalletConnect({ bridge: "https://bridge.walletconnect.org",…
elcharitas
  • 124
  • 1
  • 7
1
vote
0 answers

Can not send transaction on polygon network using flutter

I am using web3dart to send transaction. I already connect wallet for polygon but can't sign transaction. I think it's due to credential problem. @override Future sendAmount({ required String recipientAddress, required double…
1
vote
0 answers

WalletConnect - when QR code is scanned after waiting for 60+ seconds, session response is not received

I am using WalletConnectSharp to scan the QR code and connect wallet, which is a c# wrapper for WaleltConnect. This is sample code from documentation here: https://github.com/WalletConnect/WalletConnectSharp Build metadata var metadata = new…
user1106591
  • 476
  • 3
  • 12