6.1 KiB
Messages and Queries
Pre-requisite Readings {hide}
- Introduction to SDK Modules {prereq}
Messages
Message
s are objects whose end-goal is to trigger state-transitions. They are wrapped in transactions, which may contain one or multiple of them.
When a transaction is relayed from the underlying consensus engine to the 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 router
so that it can be processed by the module's handler
. For a more detailed explanation of the lifecycle of a transaction, click here.
Defining message
s is the responsibility of module developers. Typically, they are defined in a ./internal/types/msgs.go
file inside the module's folder. The message
's type 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
.
// Example of a message type definition
type MsgSubmitProposal struct {
Content Content `json:"content" yaml:"content"`
InitialDeposit sdk.Coins `json:"initial_deposit" yaml:"initial_deposit"`
Proposer sdk.AccAddress `json:"proposer" yaml:"proposer"`
}
The Msg
is typically accompanied by a standard constructor function, that is called from one of the module's interface. message
s also need to implement the [Msg
] interface:
+++ 7d7821b9af/types/tx_msg.go (L7-L29)
It contains the following methods:
Route() string
: Name of the route for this message. Typically allmessage
s in a module have the same route, which is most often the module's name.Type() string
: Type of the message, used primarly in events. This should return a message-specificstring
, typically the denomination of the message itself.ValidateBasic() Error
: This method is called bybaseapp
very early in the processing of themessage
(in bothCheckTx
andDeliverTx
), in order to discard obviously invalid messages.ValidateBasic
should only include stateless checks, i.e. checks that do not require access to the state. This usually consists in checking that the message's parameters are correctly formatted and valid (i.e. that theamount
is strictly positive for a transfer).GetSignBytes() []byte
: Return the canonical byte representation of the message. Used to generate a signature.GetSigners() []AccAddress
: Return the list of signers. The SDK will make sure that eachmessage
contained in a transaction is signed by all the signers listed in the list returned by this method.
See an example implementation of a message
from the nameservice
module:
+++ 86a27321cf/nameservice/x/nameservice/internal/types/msgs.go (L10-L51)
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 querier
. For a deeper look at the lifecycle of a query
, click here.
Contrary to message
s, there is usually no specific query
object defined by module developers. Instead, the SDK takes the simpler approach of using a simple path
to define each query
. The path
contains the query
type and all the arguments needed in order to process it. For most module queries, the path
should look like the following:
queryCategory/queryRoute/queryType/arg1/arg2/...
where:
queryCategory
is the category of thequery
, typicallycustom
for module queries. It is used to differentiate between different kinds of queries withinbaseapp
'sQuery
method.queryRoute
is used bybaseapp
'squeryRouter
to map thequery
to its module. Usually,queryRoute
should be the name of the module.queryType
is used by the module'squerier
to map thequery
to the appropriatequerier function
within the module.args
are 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 theData
field of the requestreq
instead 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 thequery
once it has been routed to the module. - Query commands in the module's CLI file, where the
path
for eachquery
is specified. query
return types. Typically defined in a fileinternal/types/querier.go
, they specify the result type of each of the module'squeries
. These custom types must implement theString()
method offmt.Stringer
.
See an example of query
return types from the nameservice
module:
+++ c6754a1e31/x/nameservice/internal/types/querier.go (L5-L21)
Next {hide}
Learn about handler
s {hide}