Skip to main content

Identity SDK

Cross-chain identity bridging — CAIP-10 linking, resolution, and chain discovery

Operations

Generated Reference

Overview

Cross-chain identity bridging — CAIP-10 linking, resolution, and chain discovery

Available Operations

lucidLinkIdentity

Link a new blockchain address to an existing cross-chain identity using CAIP-10 format. Creates the identity graph if it does not exist. Supports both Solana and EVM addresses.

Example Usage

Standalone function

The standalone function version of this method:

Parameters

Response

Promise<models.IdentityLinkResponse>

Errors

lucidResolveIdentity

Resolve a CAIP-10 address to its full cross-chain identity graph via POST. Returns all linked addresses across chains and the identity’s creation timestamp.

Example Usage

Standalone function

The standalone function version of this method:

Parameters

Response

Promise<models.SuccessResponse>

Errors

lucidGetIdentity

Resolve a CAIP-10 address to its cross-chain identity graph via GET query parameter. Functionally equivalent to the POST resolve endpoint but uses query string input.

Example Usage

Standalone function

The standalone function version of this method:

Parameters

Response

Promise<models.SuccessResponse>

Errors

lucidGetIdentityChains

Retrieve all blockchain chains linked to a CAIP-10 address, returning chain identifiers and their associated addresses within the identity graph.

Example Usage

Standalone function

The standalone function version of this method:

Parameters

Response

Promise<models.IdentityChainsResponse>

Errors

lucidUnlinkIdentity

Remove a linked address from a cross-chain identity graph. Returns 404 if the address is not found in any identity graph.

Example Usage

Standalone function

The standalone function version of this method:

Parameters

Response

Promise<models.SuccessResponse>

Errors