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

# wallet.deleted

> Sent when a wallet is disconnected from your project

## wallet.deleted

Fired when a wallet is removed from your project, either by the user or programmatically.

### When this event is sent

* A user disconnects a wallet through the Bluvo widget or Portal
* A wallet is deleted via the API

### Payload

```json Example payload theme={null}
{
  "event": "wallet.deleted",
  "eventId": "wal_abc123",
  "timestamp": "2026-04-21T12:00:00.000Z",
  "data": {
    "wallet": {
      "id": "wal_abc123",
      "projectId": "proj_xyz",
      "exchange": "coinbase"
    }
  }
}
```

### Fields

| Field                   | Type     | Description                    |
| ----------------------- | -------- | ------------------------------ |
| `data.wallet.id`        | `string` | Unique wallet identifier       |
| `data.wallet.projectId` | `string` | Project the wallet belonged to |
| `data.wallet.exchange`  | `string` | Exchange identifier            |

<Info>
  After receiving this event, any stored data associated with the wallet ID should be cleaned up in your system.
</Info>
