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

Properties

id?: null | string | number
jsonrpc: "2.0"
method: string
params: any[]

Generated using TypeDoc