feat: support more wallets

This commit is contained in:
DIYgod 2022-10-03 13:24:39 +01:00
parent e50e690523
commit e4f48cbc2e
No known key found for this signature in database
GPG Key ID: D159328F47A80DCA
1 changed files with 8 additions and 1 deletions

View File

@ -49,7 +49,14 @@ const { chains, provider } = configureChains(
const connectors = connectorsForWallets([
{
groupName: "Recommended",
wallets: [wallet.metaMask({ chains }), wallet.walletConnect({ chains })],
wallets: [
wallet.metaMask({ chains }),
wallet.walletConnect({ chains }),
wallet.rainbow({ chains }),
wallet.brave({ chains, shimDisconnect: true }),
wallet.coinbase({ appName: "Crossbell.io", chains }),
wallet.injected({ chains, shimDisconnect: true }),
],
},
])