Documentation
    Preparing search index...

    Type Alias ConnectionCompletedEvent

    ConnectionCompletedEvent: {
        is_restore: boolean;
        is_success: true;
        trace_id?: string | null;
        type: "connection-completed";
    } & ConnectionInfo

    Successful connection event when a user successfully connected a wallet.

    Type declaration

    • is_restore: boolean

      true when this completion is a replay of a stored session by restoreConnection() rather than a fresh connection. Restores fire on every page load for an already-connected user, so counting completions without excluding them measures page views rather than connections.

    • is_success: true

      Connection success flag.

    • Optionaltrace_id?: string | null

      Unique identifier used for tracking a specific user flow.

    • type: "connection-completed"

      Event type.