When Coming Back From wallets, the wallet connect status not updated in iphone. #5256
Unanswered
AthiraVGopi
asked this question in
Developer Support
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After connected when manually returned to the dapp, the status not changed still showing the wallet connect page with retry option.
I tried using the watchNetwork and watchAccount functions, nothing triggered for me. In android its working fine. Wallet connect code using in Angular
const unwatch = watchAccount((acco) => {
console.log('acc',acco);
this.isWalletConnected = acco.isConnected;
if (acco.isConnected) {
this.getAsset(acco.address);
} else {
this.asset = null;
}
})
"@wagmi/core": "1.2",
"@walletconnect/jsonrpc-types": "^1.0.3",
"@walletconnect/types": "^2.8.2",
"@web3modal/ethereum": "^2.4.7",
"@web3modal/html": "^2.4.7",
"angular-froala-wysiwyg": "^3.2.7",
Beta Was this translation helpful? Give feedback.
All reactions