diff --git a/developer-guide/wallet-connect/guide.md b/developer-guide/wallet-connect/guide.md index 704e484..3e47c6b 100644 --- a/developer-guide/wallet-connect/guide.md +++ b/developer-guide/wallet-connect/guide.md @@ -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: @@ -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 { ..., @@ -68,4 +66,4 @@ const connectors = connectorsForWallets([ ], }, ]); -``` \ No newline at end of file +```