Base protocol frame

interface RequestPublicKeyMessage {
    payload: {
        targetId: string;
    };
    requestId?: string;
    timestamp: number;
    type: "request_public_key";
}

Hierarchy (view full)

Properties

payload: {
    targetId: string;
}

Type declaration

  • targetId: string

    Target peer's public key or alias

requestId?: string

Request correlation ID for request/response flows

timestamp: number
type