# Multiple Connection Mode

### Multiple Connection Mode

You can configure `chainTypes`  property of **TomoContextProvider** to support multi-network mode. In this mode, wallets from various networks are accessible through separate tabs, allowing you to select and establish connections with them. Once connected, providers facilitate interactions with these wallets across different networks. Currently, support is extended to both Bitcoin and Cosmos networks.

<figure><img src="https://159454010-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FKx6QtlW3V2up9KOIn1lx%2Fuploads%2FOf3uCcz6pvgzmrd9Li5s%2Fimage.png?alt=media&#x26;token=36104bd2-5073-4ee1-a6ec-a75a2d29d88b" alt="" width="375"><figcaption><p>Multiple connection mode</p></figcaption></figure>

## Single Wallet Mode

```javascript
<TomoContextProvider
  chainTypes={['bitcoin']} // only show bitcoin wallets
  ...
>
  <ChildComponent />
</TomoContextProvider>
```

## Multiple Wallets Mode

```javascript
<TomoContextProvider
  chainTypes={['cosmos', 'bitcoin']} // show both bitcoin and cosmos wallets
  ...
>
  <ChildComponent />
</TomoContextProvider>
```
