From 05966feea23f18e31811b106418f22aa8fd601a1 Mon Sep 17 00:00:00 2001 From: Christopher Ricketts <6156768+chris-ricketts@users.noreply.github.com> Date: Fri, 10 Jun 2022 19:57:51 +0100 Subject: [PATCH] docs: fix protobuf service method path for rpc (#12223) The fully qualified service method path should have a `/` between the service and the method name. Co-authored-by: Marko --- docs/core/grpc_rest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/grpc_rest.md b/docs/core/grpc_rest.md index afbeb9c6fb..425a2ca387 100644 --- a/docs/core/grpc_rest.md +++ b/docs/core/grpc_rest.md @@ -77,7 +77,7 @@ Independently from the Cosmos SDK, Tendermint also exposes a RPC server. This RP Some Tendermint RPC endpoints are directly related to the Cosmos SDK: * `/abci_query`: this endpoint will query the application for state. As the `path` parameter, you can send the following strings: - * any Protobuf fully-qualified service method, such as `/cosmos.bank.v1beta1.QueryAllBalances`. The `data` field should then include the method's request parameter(s) encoded as bytes using Protobuf. + * any Protobuf fully-qualified service method, such as `/cosmos.bank.v1beta1.Query/AllBalances`. The `data` field should then include the method's request parameter(s) encoded as bytes using Protobuf. * `/app/simulate`: this will simulate a transaction, and return some information such as gas used. * `/app/version`: this will return the application's version. * `/store/{path}`: this will query the store directly.