cometbft / rpc-companion

Experimental RPC companion
1 stars 1 forks source link

POC: Implement the RPC service #3

Closed andynog closed 1 year ago

andynog commented 1 year ago

The RPC service exposes the endpoints that serve the requests and can be invoked by RPC clients. The RPC service will retrieve the information from the database and send a response that is equivalent to the one from the full node for the existing CometBFT RPC endpoints

NOTE: For the POC, the RPC service will only expose a REST endpoint. In the future the service should offer a JSONRPC endpoint the same as the full node.

andynog commented 1 year ago

this was implemented as part of the PR #6 that was just merged