interface JsonRpcRequest {
    id: number;
    jsonrpc: "2.0";
    method: string;
    params?: any;
}

Properties

id: number
jsonrpc
method: string
params?: any