Does not receive any callback after signing message.
See original GitHub issueIm trying to sign simple message using ethers, wallet connect and metamask app on android.
const provider = new WalletConnectProvider({
infuraId: '--', // replace infuraId
});
await provider.enable();
const web3 = new providers.Web3Provider(provider);
const signer = web3.getSigner();
const signature = await signer.signMessage('Hello World');
console.log('ok')
console.log(signature);
It did prompt on my phone to sign but I didnt receive any callback from it. This method works well for other providers such as fortmatic and metamask.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:16
- Comments:25
Top Results From Across the Web
Callback after Sign-up Not working - Auth0 Community
This works fine, I get routed to Auth0 where I successfully sign up. I can see the new user added to Auth0 fine....
Read more >Callback - DOCUMENT_SIGNED not triggered
When using the callback function to listen to DOCUMENT_SIGNED events, I do not receive the event if the user does not click the...
Read more >Clickatell callback url to receive messages not working
When i call the url directly, it is working as it should and sending me the mail as well as logging to the...
Read more >Best practices for building your listener - DocuSign Developers
If your listener received the messages, accept the message, place it into a ... As part of sending the envelope, a callback URL...
Read more >Possible reason for why downloaded files are not signed
We suggest waiting for callback events within your app. These callback events are POSTed to your callback handler throughout different ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Here’s another workaround (if you’re using web3Modal)
Can confirm this low-level way works.