Interface JSONRPCRequest

interface JSONRPCRequest {
    id?: JSONRPCID;
    jsonrpc: "2.0";
    method: string;
    params?: any;
}

Properties

id?: JSONRPCID
jsonrpc
method: string
params?: any