Messages and Queries
Msgs and Queries are the two primary objects handled by modules. Most of the core components defined in a module, like Msg services, keepers and Query services, exist to process messages and queries.
Pre-requisite Readings
Messages
Msgs are objects whose end-goal is to trigger state-transitions. They are wrapped in transactions, which may contain one or more of them.
When a transaction is relayed from the underlying consensus engine to the Cosmos SDK application, it is first decoded by BaseApp. Then, each message contained in the transaction is extracted and routed to the appropriate module via BaseApp's MsgServiceRouter so that it can be processed by the module's Msg service. For a more detailed explanation of the lifecycle of a transaction, click here.
Msg Services
Defining Protobuf Msg services is the recommended way to handle messages. A Protobuf Msg service should be created for each module, typically in tx.proto (see more info about conventions and naming). It must have an RPC service method defined for each message in the module.
See an example of a Msg service definition from x/bank module:
https://github.com/cosmos/cosmos-sdk/blob/v0.47.0-rc1/proto/cosmos/bank/v1beta1/tx.proto#L13-L36
Each Msg service method must have exactly one argument, which must implement the sdk.Msg interface, and a Protobuf response. The naming convention is to call the RPC argument Msg<service-rpc-name> and the RPC response Msg<service-rpc-name>Response. For example:
rpc Send(MsgSend) returns (MsgSendResponse);
sdk.Msg interface is a simplified version of the Amino LegacyMsg interface described below with the GetSigners() method. For backwards compatibility with Amino LegacyMsgs, existing LegacyMsg types should be used as the request parameter for service RPC definitions. Newer sdk.Msg types, which only support service definitions, should use canonical Msg... name.
The Cosmos SDK uses Protobuf definitions to generate client and server code:
MsgServerinterface defines the server API for theMsgservice and its implementation is described as part of theMsgservices documentation.- Structures are generated for all RPC request and response types.
A RegisterMsgServer method is also generated and should be used to register the module's MsgServer implementation in RegisterServices method from the AppModule interface.
In order for clients (CLI and grpc-gateway) to have these URLs registered, the Cosmos SDK provides the function RegisterMsgServiceDesc(registry codectypes.InterfaceRegistry, sd *grpc.ServiceDesc) that should be called inside module's RegisterInterfaces method, using the proto-generated &_Msg_serviceDesc as *grpc.ServiceDesc argument.
Legacy Amino LegacyMsgs
The following way of defining messages is deprecated and using Msg services is preferred.
Amino LegacyMsgs can be defined as protobuf messages. The messages definition usually includes a list of parameters needed to process the message that will be provided by end-users when they want to create a new transaction containing said message.
A LegacyMsg is typically accompanied by a standard constructor function, that is called from one of the module's interface. messages also need to implement the sdk.Msg interface:
https://github.com/cosmos/cosmos-sdk/blob/v0.47.0-rc1/types/tx_msg.go#L14-L26
It extends proto.Message and contains the following methods:
GetSignBytes() []byte: Return the canonical byte representation of the message. Used to generate a signature.GetSigners() []AccAddress: Return the list of signers. The Cosmos SDK will make sure that eachmessagecontained in a transaction is signed by all the signers listed in the list returned by this method.
https://github.com/cosmos/cosmos-sdk/blob/v0.47.0-rc1/x/auth/migrations/legacytx/stdsign.go#L20-L36
See an example implementation of a message from the gov module:
https://github.com/cosmos/cosmos-sdk/blob/v0.47.0-rc1/x/gov/types/v1/msgs.go#L121-L153
Queries
A query is a request for information made by end-users of applications through an interface and processed by a full-node. A query is received by a full-node through its consensus engine and relayed to the application via the ABCI. It is then routed to the appropriate module via BaseApp's QueryRouter so that it can be processed by the module's query service (./04-query-services.md). For a deeper look at the lifecycle of a query, click here.
gRPC Queries
Queries should be defined using Protobuf services. A Query service should be created per module in query.proto. This service lists endpoints starting with rpc.
Here's an example of such a Query service definition:
https://github.com/cosmos/cosmos-sdk/blob/v0.47.0-rc1/proto/cosmos/auth/v1beta1/query.proto#L14-L89
As proto.Messages, generated Response types implement by default String() method of fmt.Stringer.
A RegisterQueryServer method is also generated and should be used to register the module's query server in the RegisterServices method from the AppModule interface.
Legacy Queries
Before the introduction of Protobuf and gRPC in the Cosmos SDK, there was usually no specific query object defined by module developers, contrary to messages. Instead, the Cosmos SDK took the simpler approach of using a simple path to define each query. The path contains the query type and all the arguments needed to process it. For most module queries, the path should look like the following:
queryCategory/queryRoute/queryType/arg1/arg2/...
where:
queryCategoryis the category of thequery, typicallycustomfor module queries. It is used to differentiate between different kinds of queries withinBaseApp'sQuerymethod.queryRouteis used byBaseApp'squeryRouterto map thequeryto its module. Usually,queryRouteshould be the name of the module.queryTypeis used by the module'squerierto map thequeryto the appropriatequerier functionwithin the module.argsare the actual arguments needed to process thequery. They are filled out by the end-user. Note that for bigger queries, you might prefer passing arguments in theDatafield of the requestreqinstead of thepath.
The path for each query must be defined by the module developer in the module's command-line interface file.Overall, there are 3 mains components module developers need to implement in order to make the subset of the state defined by their module queryable:
- A
querier, to process thequeryonce it has been routed to the module. - Query commands in the module's CLI file, where the
pathfor eachqueryis specified. queryreturn types. Typically defined in a filetypes/querier.go, they specify the result type of each of the module'squeries. These custom types must implement theString()method offmt.Stringer.
Store Queries
Store queries query directly for store keys. They use clientCtx.QueryABCI(req abci.RequestQuery) to return the full abci.ResponseQuery with inclusion Merkle proofs.
See following examples:
https://github.com/cosmos/cosmos-sdk/blob/v0.47.0-rc1/baseapp/abci.go#L881-L902