Documentation
    Preparing search index...

    Interface ConnectEventSuccess

    Successful connect handshake.

    Wallets that support the EmbeddedRequest feature MAY attach the signed result of an embedded action on ConnectEventSuccess.response.

    interface ConnectEventSuccess {
        event: "connect";
        id: number;
        payload: { device: DeviceInfo; items: ConnectItemReply[] };
        response?: WalletResponse<RpcMethod>;
    }
    Index

    Properties

    event: "connect"
    id: number

    Monotonic event id (separate counter from RPC id).

    payload: { device: DeviceInfo; items: ConnectItemReply[] }

    Type declaration

    Result of an embedded request that traveled in the connect URL's e parameter. Present only when the wallet supports the EmbeddedRequest feature and chose to process the folded request.