> ## Documentation Index
> Fetch the complete documentation index at: https://docs.formo.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Connect event

> Reference for the connect event emitted when a user connects their wallet, including the newly connected chain ID and wallet address fields.

The `connect` event is emitted whenever the user connects a wallet.

## Properties

| Property        | Type   | Description                                                                                |
| :-------------- | :----- | :----------------------------------------------------------------------------------------- |
| `chain_id`      | Number | Chain ID of the network the wallet connected to.                                           |
| `provider_name` | String | Wallet connector/provider name (present when auto-captured through the wagmi integration). |

## Sample Payload

Here’s the payload of a typical call with most common fields removed:

```json theme={null}
{
    "type": "connect",
    "address": "0x8e6ca77a7e044ba836a97beb796c124ca3a6a154",
    "properties": {
        "chain_id": 1
    }
}
```
