Skip to main content

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

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

Fields

FieldTypeDescription
data.wallet.idstringUnique wallet identifier
data.wallet.projectIdstringProject the wallet belonged to
data.wallet.exchangestringExchange identifier
After receiving this event, any stored data associated with the wallet ID should be cleaned up in your system.