Base protocol frame

interface RegisteredResponse {
    payload: {
        l2psUid: string;
        onlinePeers: string[];
        publicKey: string;
        success: boolean;
    };
    requestId?: string;
    timestamp: number;
    type: "registered";
}

Hierarchy (view full)

Properties

payload: {
    l2psUid: string;
    onlinePeers: string[];
    publicKey: string;
    success: boolean;
}
requestId?: string

Request correlation ID for request/response flows

timestamp: number
type