Skip to content

Commit

Permalink
include bloom in walletconnect popup
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkNerdi committed Dec 4, 2023
1 parent 21980a1 commit 11b6113
Showing 1 changed file with 9 additions and 24 deletions.
33 changes: 9 additions & 24 deletions developer-guide/wallet-connect/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,16 @@ As we're waiting for WalletConnect to approve our project, you can add Bloom man

```
createWeb3Modal({
//...
desktopWallets: [
{
id: '652df0cee82d5cd3cadfd57829c5578a',
name: 'Bloom Wallet',
links: {
native: 'bloom://walletConnect/connect'
universal: 'bloomwallet.io',
},
},
//...
customWallets: [
{
id: 'bloom',
name: 'Bloom',
homepage: 'https://bloomwallet.io/',
image_url: 'https://bloomwallet.io/assets/logos/bloom.png',
desktop_link: 'bloom://dapps/connect',
},
],
walletImages: {
652df0cee82d5cd3cadfd57829c5578a: "bloomwallet.io/assets/logos/bloom.png",
};
})
```

Expand All @@ -45,14 +41,3 @@ createWeb3Modal({
]
})
```

If your dApp requires a feature that most of the wallets don't implement, but `Bloom` does, you can use the following code instead of the code on top:

```
createWeb3Modal({
//...
includeWalletIds: [
'652df0cee82d5cd3cadfd57829c5578a', // Bloom wallet
]
})
```

0 comments on commit 11b6113

Please sign in to comment.