Replies: 1 comment
-
Please use below code while initializing // FOR EVM Wallets
await web3auth.initModal({
modalConfig: {
'torus-evm': {
showOnModal: false,
},
metamask: {
showOnModal: false,
},
'wallet-connect-v1': {
showOnModal: false,
},
},
}) Note: Above ones are EVM wallets, to hide Solana Wallets, use // FOR SOLANA wallets
await web3auth.initModal({
modalConfig: {
'torus-solana': {
showOnModal: false,
},
phantom: {
showOnModal: false,
},
},
}) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey, how can i disable login with external wallet from the web3Auth popup? I just need social login and don't want users to login with web3 wallets. Thanks
Asked by
Ashlesh
on Telegram.Beta Was this translation helpful? Give feedback.
All reactions