# 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)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.fewcha.app/get-started/connect.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
