Interface JsonRpcRequest

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

Properties

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