You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
Currently, the jsonrpc RPC API from jsonrpsee introduces some needless dependencies which should be fixed shortly.
In addition the crate itself brings in sc-chain-spec which in turn brings in sc-network and it has lots of dependencies (libp2p and so on) which are not needed just because a couple of types are needed in the system RPC API.
Thus, would be nice to extract these types or even duplicate them just to avoid having these extra dependencies.
The typical use-case is that one wants to re-use the RPC API from substrate in some client library/application to avoid duplicating the entire API or import half of the dependencies in substrate.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently, the jsonrpc RPC API from jsonrpsee introduces some needless dependencies which should be fixed shortly.
In addition the crate itself brings in
sc-chain-spec
which in turn brings insc-network
and it has lots of dependencies (libp2p and so on) which are not needed just because a couple of types are needed in thesystem RPC API
.Thus, would be nice to extract these types or even duplicate them just to avoid having these extra dependencies.
The typical use-case is that one wants to re-use the RPC API from substrate in some client library/application to avoid duplicating the entire API or import half of the dependencies in substrate.
The text was updated successfully, but these errors were encountered: