How to disable social (google, github ...) and email from web3modal window?

1 week ago 4
ARTICLE AD BOX

I want to simply disable social networks and email input in the modal window and leave only wallets.

enter image description here

How can I do that? I've tried

enableSocials: false, enableWalletFeatures: false,

but its don working. I use Web3modal (@web3modal/ethers ethers).

web3modal.ts :

import { createWeb3Modal, defaultConfig } from '@web3modal/ethers/react' const projectId = ''; const sepolia = { chainId: 11155111, name: 'Sepolia', currency: 'SepoliaETH', explorerUrl: 'https://sepolia.etherscan.io', rpcUrl: 'https://rpc.sepolia.org' }; const metadata = { name: 'Мой Vite Сайт', description: 'Пример для Vite', url: 'http://localhost:5173', icons: ['/some-icon.png'] }; createWeb3Modal({ ethersConfig: defaultConfig({ metadata }), chains: [sepolia], // The methods i tried // enableSocials: false, // enableWalletFeatures: false, projectId, });
Read Entire Article