SettleMint
Events

identity.registration.provisional

An identity was joined to an identity registry; the linkage is provisional until the indexer reaches the configured reorg depth.

An identity was joined to an identity registry; the linkage is provisional until the indexer reaches the configured reorg depth.

Delivery contract

FieldValue
Event typeidentity.registration.provisional
Version1
Lifecycle stateprovisional
Counter-signed receiptsNo event-specific advice
SDK typeWebhook.IdentityRegistrationProvisionalV1

This row gives advice only. DALP waits for a counter-signed receipt only if the webhook endpoint's counterSignedReceipts value is true when DALP queues the delivery. When the value is false, a normal 2xx response completes the delivery.

Related references:

  • idxr_account
  • idxr_identity

When to consume this event

Consume identity.registration.provisional when your integration needs early notice that an account address has been joined to an identity registry, but can tolerate the result still being within the configured reorg depth.

Use the event to stage downstream identity, account, or compliance synchronization. Do not treat it as final proof of registry membership while the observation is provisional.

Your consumer must handle any later retraction or final state for the same on-chain observation.

The payload carries the account address, identity address, registry address, country code, status, chain ID, block number, and transaction hash. Treat accountAddress and country as personal-data-bearing fields for webhook privacy reviews. If your endpoint is configured for thin payload delivery, do not depend on those fields in the first delivery.

See webhook idempotency and on-chain outcome for retry, replay, payload-shape, and provisional-event handling.

Payload schema

{
  "type": "object",
  "properties": {
    "accountAddress": {
      "type": "string"
    },
    "blockNumber": {
      "type": "string"
    },
    "chainId": {
      "type": "integer",
      "exclusiveMinimum": 0
    },
    "country": {
      "type": "integer",
      "minimum": 0
    },
    "identityAddress": {
      "type": "string"
    },
    "registryAddress": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "transactionHash": {
      "type": "string"
    }
  },
  "required": [
    "accountAddress",
    "blockNumber",
    "chainId",
    "country",
    "identityAddress",
    "registryAddress",
    "status",
    "transactionHash"
  ],
  "additionalProperties": false
}

TypeScript SDK example

import { verifyWebhook } from "@settlemint/dalp-sdk/verify-webhook";
import type { Webhook } from "@settlemint/dalp-sdk";

const result = await verifyWebhook({
  rawBody,
  headers,
  secret: process.env.DALP_WEBHOOK_SECRET!,
});

if (!result.ok) {
  throw new Error(`Webhook verification failed: ${result.code}`);
}

if (result.event.type === "identity.registration.provisional") {
  const event: Webhook.Event<"identity.registration.provisional"> = result.event;
  console.log(event.payload);
}

curl example

curl -X POST https://consumer.example.com/dalp/webhooks \
  -H "content-type: application/json" \
  -H "webhook-id: evt_12891b2c83d427ba8c84b969cbbf5af5" \
  -H "webhook-timestamp: 1778112000" \
  -H "webhook-signature: v1,docs-example-signature" \
  --data '{"evt_id":"evt_12891b2c83d427ba8c84b969cbbf5af5","lifecycle_state":"provisional","payload":{"accountAddress":"0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb","blockNumber":"18445201","chainId":537001,"country":56,"identityAddress":"0xcccccccccccccccccccccccccccccccccccccccc","registryAddress":"0xdddddddddddddddddddddddddddddddddddddddd","status":"ACTIVE","transactionHash":"0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"},"related":{"idxr_account":"idxr_account_example","idxr_identity":"idxr_identity_example"},"type":"identity.registration.provisional","version":1,"request":{"idempotency_key":"idem_01JZP7R5W8M9N0P1Q2R3S4T5"}}'

Version history

  • Version 1: Initial registry entry for identity.registration.provisional.

Deprecation

This event type is not deprecated.

Manifest

The machine-readable AsyncAPI entry is published in the DALP events manifest.

On this page