Skip to content

Commit

Permalink
fix: wallet connect deep link
Browse files Browse the repository at this point in the history
  • Loading branch information
nicole-obrien committed Dec 8, 2023
1 parent 48b9dfb commit 80a7235
Showing 1 changed file with 15 additions and 17 deletions.
32 changes: 15 additions & 17 deletions developer-guide/wallet-connect/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ order: 1000

# Guide


# Web3Modal

To include `Bloom Wallet` in the list of recommended wallets, please add the following code to your Web3Modal options:
Expand All @@ -14,39 +13,38 @@ To include `Bloom Wallet` in the list of recommended wallets, please add the fol
createWeb3Modal({
//...
featuredWalletIds: [
'652df0cee82d5cd3cadfd57829c5578a', // Bloom wallet
]
})
"652df0cee82d5cd3cadfd57829c5578a", // Bloom wallet
],
});
```

---

**NOTE**

As we're waiting for WalletConnect to approve our project, you can add Bloom manually to the list of wallets as follows:

```javascript
createWeb3Modal({
//...
//...
customWallets: [
{
id: 'bloom',
name: 'Bloom',
homepage: 'https://bloomwallet.io/',
image_url: 'https://bloomwallet.io/assets/logos/bloom.png',
desktop_link: 'bloom://wallet-connect/connect?uri=',
},
{
id: "bloom",
name: "Bloom",
homepage: "https://bloomwallet.io/",
image_url: "https://bloomwallet.io/assets/logos/bloom.png",
desktop_link: "bloom://wallet-connect/connect",
},
],
})
});
```
---

---

# RainbowKit

To include `Bloom Wallet` in the list of recommended wallets, please add the following code to your RainbowKit options:



```javascript
import {
...,
Expand All @@ -68,4 +66,4 @@ const connectors = connectorsForWallets([
],
},
]);
```
```

0 comments on commit 80a7235

Please sign in to comment.