# AlchemySignerEvents | @account-kit/signer

> Overview of AlchemySignerEvents from @account-kit/signer

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

{/* This file is auto-generated by TypeDoc. Do not edit manually. */}

```ts
type AlchemySignerEvents = object;
```

Defined in: [account-kit/signer/src/types.ts:3](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/signer/src/types.ts#L3)

## Methods

### connected()

```ts
connected(user): void;
```

Defined in: [account-kit/signer/src/types.ts:4](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/signer/src/types.ts#L4)

#### Parameters

<table>
  <thead>
    <tr>
      <th align="left">Parameter</th>
      <th align="left">Type</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `user`
      </td>

      <td>
        `User`
      </td>
    </tr>

  </tbody>
</table>

#### Returns

`void`

---

### disconnected()

```ts
disconnected(): void;
```

Defined in: [account-kit/signer/src/types.ts:6](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/signer/src/types.ts#L6)

#### Returns

`void`

---

### emailAuthLinkingRequired()

```ts
emailAuthLinkingRequired(email): void;
```

Defined in: [account-kit/signer/src/types.ts:14](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/signer/src/types.ts#L14)

#### Parameters

<table>
  <thead>
    <tr>
      <th align="left">Parameter</th>
      <th align="left">Type</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `email`
      </td>

      <td>
        `string`
      </td>
    </tr>

  </tbody>
</table>

#### Returns

`void`

---

### errorChanged()

```ts
errorChanged(error): void;
```

Defined in: [account-kit/signer/src/types.ts:8](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/signer/src/types.ts#L8)

#### Parameters

<table>
  <thead>
    <tr>
      <th align="left">Parameter</th>
      <th align="left">Type</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `error`
      </td>

      <td>
        `undefined` | [`ErrorInfo`](../interfaces/ErrorInfo)
      </td>
    </tr>

  </tbody>
</table>

#### Returns

`void`

---

### mfaStatusChanged()

```ts
mfaStatusChanged(mfaStatus): void;
```

Defined in: [account-kit/signer/src/types.ts:9](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/signer/src/types.ts#L9)

#### Parameters

<table>
  <thead>
    <tr>
      <th align="left">Parameter</th>
      <th align="left">Type</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `mfaStatus`
      </td>

      <td>
        \{ `encryptedPayload?`: `string`; `mfaFactorId?`: `string`; `mfaRequired`: `boolean`; }
      </td>
    </tr>

    <tr>
      <td>
        `mfaStatus.encryptedPayload?`
      </td>

      <td>
        `string`
      </td>
    </tr>

    <tr>
      <td>
        `mfaStatus.mfaFactorId?`
      </td>

      <td>
        `string`
      </td>
    </tr>

    <tr>
      <td>
        `mfaStatus.mfaRequired`
      </td>

      <td>
        `boolean`
      </td>
    </tr>

  </tbody>
</table>

#### Returns

`void`

---

### newUserSignup()

```ts
newUserSignup(): void;
```

Defined in: [account-kit/signer/src/types.ts:5](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/signer/src/types.ts#L5)

#### Returns

`void`

---

### statusChanged()

```ts
statusChanged(status): void;
```

Defined in: [account-kit/signer/src/types.ts:7](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/signer/src/types.ts#L7)

#### Parameters

<table>
  <thead>
    <tr>
      <th align="left">Parameter</th>
      <th align="left">Type</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `status`
      </td>

      <td>
        [`AlchemySignerStatus`](../enumerations/AlchemySignerStatus)
      </td>
    </tr>

  </tbody>
</table>

#### Returns

`void`