Wallet connect not work on telegram mini app #4574
Replies: 7 comments 16 replies
-
Had the same issue: DrKLO/Telegram#1816 |
Beta Was this translation helpful? Give feedback.
-
How about iOS? |
Beta Was this translation helpful? Give feedback.
-
My workaround was just using the metamask sdk. Sorry WalletConnect. Now my telegram miniapp can connect a wallet via the metamask mobile app. https://github.com/MetaMask/metamask-sdk/blob/main/packages/examples/create-react-app/README.md |
Beta Was this translation helpful? Give feedback.
-
For anyone having similar problems, here's a dirty hack: window.open = (function (open) {
return function (url, _, features) {
return open.call(window, url, "_blank", features);
};
})(window.open); Quick reproduction @wcminiappfixbot Source IDK why, but this behavior has something to do with the target attribute, I think it's how webview works on android in general. |
Beta Was this translation helpful? Give feedback.
-
I dont think it is working, ask telegram to fix it. |
Beta Was this translation helpful? Give feedback.
-
facing same issue .can't get the exact information about this how we can set this ? |
Beta Was this translation helpful? Give feedback.
-
I had the same issue but you can use privy.io telegram auth for login within telegram mini app it will create smart account |
Beta Was this translation helpful? Give feedback.
-
Hello, I am developing a Telegram mini app. It has a function to connect to a wallet. When it runs on a PC, everything works fine, but when it runs on a phone, it cannot connect to MetaMask.
I have tried the sample mini app from your repository at https://github.com/softstack/telegram-mini-app, but it encounters the same issue.
When run on a phone it just stuck in here like this image.
I try with android phone then it fire the error like this:
Anyone have same issue?
Beta Was this translation helpful? Give feedback.
All reactions