v1.0.0
- Support batch requests
Breaking changes:
JSONRPCClient.receiveJSON
now returnsPromiseLike<JSONRPCResponse | JSONRPCResponse[] | null>
.- It used to return
PromiseLike<JSONRPCResponse | null>
.
- It used to return
- It drops support for using higher-order function to access client params and server params.
- It uses async/await.
- It depends on TypeScript v4.
- It used to depend on v3.
- I don't think we introduced anything new yet, but we will start using new features (e.g.,
unknown
) as we see fit.