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

Properties

id: number
jsonrpc: "2.0"
method: string
params?: any

Generated using TypeDoc