Auth
The auth
module is responsible for the authentication of accounts and transactions and specifies the base transaction and account types. It contains the middlewares, where all basic transaction validity checks (signatures, nonces, auxiliary fields) are performed, and exposes the account keeper, which allows other modules to read, write, and modify accounts.
For more information, visit https://docs.cosmos.network/main/modules/auth/
Queries
Query
defines the gRPC querier service.
QueryAccountsRequest
QueryAccountsRequest
is the request type for the Query/Accounts
RPC method.
Since: cosmos-sdk 0.43
QueryAccountsResponse
QueryAccountsResponse
is the response type for the Query/Accounts RPC method.
Since: cosmos-sdk 0.43
QueryAccountRequest
QueryAccountRequest
is the request type for the Query/Account
RPC method.
QueryAccountResponse
QueryAccountResponse
is the response type for the Query/Account
RPC method.
QueryParamsRequest
QueryParamsRequest
is the request type for the Query/Params
RPC method.
QueryParamsResponse
QueryParamsResponse
is the response type for the Query/Params
RPC method.
QueryModuleAccountsRequest
QueryModuleAccountsRequest
is the request type for the Query/ModuleAccounts
RPC method.
QueryModuleAccountsResponse
QueryModuleAccountsResponse
is the response type for the Query/ModuleAccounts
RPC method.
Bech32PrefixRequest
Bech32PrefixRequest
is the request type for Bech32Prefix
rpc method.
Bech32PrefixResponse
Bech32PrefixResponse
is the response type for Bech32Prefix
rpc method.
AddressBytesToStringRequest
AddressBytesToStringRequest
is the request type for AddressString
rpc method.
AddressBytesToStringResponse
AddressBytesToStringResponse
is the response type for AddressString
rpc method.
AddressStringToBytesRequest
AddressStringToBytesRequest
is the request type for AccountBytes
rpc method.
AddressStringToBytesResponse
AddressStringToBytesResponse
is the response type for AddressBytes
rpc method.
Was this page helpful?