> For the complete documentation index, see [llms.txt](https://docs.fewcha.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fewcha.app/get-started/connect.md).

# Connect

## Connect to Fewcha Wallet

To connect to Fewcha Wallet, you simply call this method `window.fewcha.connect()`

```javascript
await window.fewcha.connect();
```

`connect()`: the method will return a Promise that resolves when the user accepts the connection request to the **DApp** website. The response will look like

```json
{
    "method": "connect",
    "status": 200,
    "data": {
        "address": "0x...",
        "publicKey": "0x..."
    }
}
```

{% hint style="info" %}
To  get all methods of **Wallet**, learn more at [**Wallet methods**](/reference/wallet-methods.md)
{% endhint %}

To use with **TypeScript** support, please learn more at [TypeScript Wrapper](/typescript-wrapper.md), and use with React Select Wallet Popup, learn more at [React Connect Button](/react-connect-button.md)

## Disconnecting

```typescript
await window.fewcha.disconnect();
```

and check current status of connect with[Connection](/reference/wallet-methods/connection.md#isconnected)
