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
0
votes
0 answers

eth_sign method fail with @walletconnect/sign-client and @web3modal/standalone

I am currently trying to use the eth_sign method with WalletConnect to sign a message from a wallet application, here Spot. To do this I took the js example project available on the git of WalletConnect with the chosen configuration…
Antoine
  • 47
  • 6
0
votes
0 answers

WalletConnect modal error: Cannot read properties of undefined (reading 'importKey')

When running on localhost, I am able to open the WalletConnect modal and scan the QR code and there is no error. However, when I have my app hosted on a VM (Ubuntu 20.04), after opening the WalletConnect modal and when the QR code displays, I get…
code_learner93
  • 571
  • 5
  • 12
0
votes
0 answers

How to create a wallet with transaction

I am looking to create an application where I will be able as a user, to create a wallet, to supply my wallet with cash or bank card and to make transactions to people who have the application. Do you know how to secure all this? What type of…
0
votes
0 answers

Walletconnect 2.0 signing requests on Kadena blockchain

I've been able to connect walletconnect to my eckoWallet by using the qr code, problem now is signing requests doesn't respond. The code below contains two functions, first which is the walletConnect which is working perfectly fine. My main issue is…
advanztek
  • 41
  • 3
0
votes
1 answer

Invalid QR Code WalletConnect v2.0 Android

I have developed a simple online application under an https domain allowing a user to connect with WalletConnect using its version 2 with the standalone configuration. When I try my application on desktop I have the modal that appears correctly. I…
Antoine
  • 47
  • 6
0
votes
1 answer

Connect WalletConnect with html application

I need to connect WalletConnect Web3Modal with html application. I'm following the documentation step by step: https://docs.walletconnect.com/2.0/web3modal/html-js/installation. But server returns error. What is the way to resolve this issue? Failed…
LEVANCHIKA
  • 21
  • 2
0
votes
1 answer

WalletConnect v2.0 library integration issues with shadow-cljs

I am currently trying to use the WalletConnect v2.0 library using Web3Modal SDK in a clojuscript project with shadow-cljs. To do this I followed the standalone installation: Web3Modal Standalone Installation I installed the libraries with npm : npm…
0
votes
0 answers

How can I transfer custom tokens(USDT, BNB etc) on Ethereum Chain using Walletconnect and ethers.js?

I am trying to transfer custom tokens on Ethereum chain using ethers.js with walletconnect as provider. I can successfully transfer ETH but when I try to transfer any other token using contract address, the dialog in trust wallet which I have…
0
votes
0 answers

connector.signPersonalMessage not redirecting me to app after confirmation. Wallet connect v1 in react-native

I am using right now wallet connect v1 in my react native app. At starting of the app when i connect to wallet connect by await connector.connect({ chainId: parseInt(CHAIN_ID, 10) }); It navigate me to selected wallet app (Rainbow) after granted…
Pankaj Sonava
  • 519
  • 4
  • 20
0
votes
0 answers

Selecting a specific wallet in Wallectconnect with React-Native

When developing in react-native dapp based on wallectconnect, I have some issues with selecting wallets. I just want to selecting a specific wallet, such as metamask or coinbase wallet. The sample code is below. import WalletConnectProvider from…
Hans
  • 161
  • 1
  • 11
0
votes
0 answers

Why I get "Cannot read properties of undefined (reading 'default') while connecting with WalletConnectProvider"? in Flutter

I am getting the folling error when I want to connect to trustWallet or Metamask through walletconnect with flutter_web3 package. Error: Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'default') at…
Davoud
  • 2,576
  • 1
  • 32
  • 53
0
votes
1 answer

The mobile browser cannot connect to metaMask, it opens the metamask application but after that nothing happens

Web3Button from Web3Modal not connecting to my mobile metmask wallet if i open it in mobile chrome browser This is my App.js file import { EthereumClient, modalConnectors, walletConnectProvider, } from "@web3modal/ethereum"; import { Web3Modal…
0
votes
0 answers

TrustWallet doesn't show confirmation popup after few minutes of closing app "Flutter"

I am using walletconnect_dart package to connect with metamask/trustwallet and send transaction for metamask it's working but for TrustWallet when user close app and come back after few minutes session is still connected but it doesn't show…
0
votes
0 answers

Unable to disconnect from a WalletConnect dApp

I am setting up the ability to disconnect the session from my wallet app in React-Native. My code looks like this which matches the docs except that I am importing "getSdkError" from WalletConnectUtils: import { Core } from…
Jake Mulhern
  • 660
  • 5
  • 13
0
votes
2 answers

Unable to resolve module crypto

I am attempting to implement WalletConnect V1 in my React-Native Wallet app. However, whenever I use the following import: import WalletConnect from "@walletconnect/client"; I get the following error: Unable to resolve module crypto from…
Jake Mulhern
  • 660
  • 5
  • 13