interface JsonRpcRequest {
    id: number;
    jsonrpc: "2.0";
    method: string;
    params: unknown[];
}

Hierarchy (view full)

Properties

Properties

id: number
jsonrpc: "2.0"
method: string
params: unknown[]