Interface WebSocketMessage

WebSocket message format for subscription notifications.

2.0.0

interface WebSocketMessage {
    jsonrpc: "2.0";
    method: string;
    params: {
        result: any;
        subscription: number;
    };
}

Properties

Properties

jsonrpc
method: string
params: {
    result: any;
    subscription: number;
}