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
1 answer

Google wallet is not working Android kotlin

I am trying to create an application like this to save my ticket passes in google wallet https://codelabs.developers.google.com/add-to-wallet-android#0. I have done all steps but I couldn't get the result. Google pay button is not visible Actually,…
1
vote
1 answer

Signing messages using MetaMask in Flutter

I am using walletconnect_dart package to connect my Flutter app to MetaMask which works fine. But I want the user to sign a message in MetaMask and get the signature. How can I do that in Flutter?
mr.SoSerious
  • 121
  • 1
  • 9
1
vote
0 answers

WalletConnect library not performing transaction also dependency not working

I want to perform a transaction in my app using wallet connect library. Connect button is working fine, but when I try to perform a transaction, it redirected to metamask, but nothing happens. No dialog appears. Has anyone found any solution? Also…
Mukesh
  • 97
  • 4
1
vote
1 answer

Algorand WalletConnect connection not showing metadata on Pera Wallet

I'm trying to get a working connection between a NextJS application and my Algorand wallet (Pera) using WalletConnect. I am able to connect, but the NextJS application won't send any metadata like dApp name. Is there something wrong with my…
1
vote
1 answer

Walletconnect does not stay connected

I am using walletconnect_dart to connect my app to Metamask. Scanning the QR code or mobile deep link all works well and is immediately connected to the wallet. The issue I am facing is that when I restart the app, my wallet is no longer connected…
Hemal Moradiya
  • 1,715
  • 1
  • 6
  • 26
1
vote
0 answers

WalletNotReadyError- I got it when I develop Solana wallet integration with React.js in chrome extension

I am developing twitter extension for the website. When I try to connect dapp and phantom wallet in react.js project, it works. but If I try it in chrome extension, then doesn't work. import { useConnection, useWallet, } from…
1
vote
1 answer

How to sign a transaction without sending it somewhere in Metamask

I'm trying to make a signed transaction in Android metamask using wallet connect send the transaction to my backend-server and then submit it to blockchain. However, it's hard to find how I can just sign transaction(not sending it) and send it to my…
Jay Vyas
  • 2,674
  • 5
  • 27
  • 58
1
vote
1 answer

How to connect a Chrome extension made with React to Metamask and other wallets?

I need to connect Metamask to a Chrome extension I'm doing. I'm not a crypto expert, I'm using ethers js and following some tutorials but the extension doesn't recognize that Metamask is in the browser. I run the same scripts in a normal web app…
1
vote
1 answer

React Native and WalletConnect (Uncaught Error: null is not an object (evaluating 'RNRandomBytes.seed'))

I want to use WalletConnect on my ReactNative app. As the WalletConnect docs say, I'm using npx rn-nodeify --install --hack (for introducing support for Web3) in an existing project. Of course, I'm following these docs (which are indicated on the…
josanbaq
  • 226
  • 3
  • 7
1
vote
1 answer

WalletConnect not showing metamask

Here's my code: const provider = new WalletConnectProvider({ rpc: { private-testnet-chainId: "private testnet", }, qrcodeModalOptions: { mobileLinks: [ …
Ayudh
  • 1,673
  • 1
  • 22
  • 55
1
vote
1 answer

WalletConnect issue importing 'crypto'

I'm using wallet connect, but when I try to do the connect it gives me this error: Module not found: Error: Can't resolve 'crypto' And then it gives me this suggestions: BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core…
1
vote
1 answer

How to implement eth_signTypedData in swift?

I am developing a crypto wallet, I have implemented personal_sign and eth_sign in swift, how to implement eth_signTypedData, the official walletConnect documentation seems to have no relevant information. Any idears? Thanks!
Ben
  • 99
  • 2
  • 12
1
vote
1 answer

walletconnect doesn't work in localhost but in codesandbox using web3-react

i tried to implement walletconnect using web3-react follow by their example in docs, but seem like it's doesn't work in localhost but codesandbox. Can someone explain to me how can it happened, my simple codesandbox to…
sonphung.xf
  • 107
  • 8
1
vote
1 answer

WalletConnect transactions Issue with eth_sendTransaction Popup Not Showing

import { WalletConnectConnector } from "@web3-react/walletconnect-connector"; I have used this for connecting walletconnect through QR code and used useWeb3React for connecting to wallet. Metamask extension is working fine but not able to use…
1
vote
1 answer

WalletConnect disable infura error message

I am currently developing a dapp and I am integrating walletconnect. I use this code for connecting: const chainId = ContractService.getPreferredChainId(); const rpc = ContractService.getRpcAddress(); provider = new WalletConnectProvider({ …
Thimma
  • 1,343
  • 7
  • 33