Type alias PendingJsonRpcResponse<Result>

PendingJsonRpcResponse<Result>: Omit<Infer<typeof PendingJsonRpcResponseStruct>, "result"> & {
    result?: Result;
}

A JSON-RPC response object that has not yet been resolved.

Type Parameters