Documentation
    Preparing search index...

    Type Alias ConnectionLinkGeneratedEvent

    A connect URL or QR code was built for display, without anyone choosing to connect.

    Separate from ConnectionInitiatedEvent rather than a flag on it, because the two are only distinguishable by intent and a flag would have to be remembered in every query. The desktop universal modal builds a QR as it renders, and the desktop connection screen rebuilds one in an effect — both open a real session, so they are indistinguishable downstream from a connect a user asked for.

    Carries the same source classification, so QR displays can be counted per wallet or per bridge without inflating initiations.

    type ConnectionLinkGeneratedEvent = {
        bridge_key?: string;
        bridge_url?: string;
        connection_source_kind: WalletConnectionSourceKind;
        custom_data: Version;
        trace_id?: string | null;
        type: "connection-link-generated";
    }
    Index

    Properties

    bridge_key?: string

    Bridge key from the wallets list, for js-embedded and js-injected sources.

    bridge_url?: string

    Bridge URL, for an http-specific-wallet source.

    connection_source_kind: WalletConnectionSourceKind

    How the link would connect, had it been used.

    custom_data: Version

    Custom data for the connection.

    trace_id?: string | null

    Unique identifier used for tracking a specific user flow.

    type: "connection-link-generated"

    Event type.