Get desktop application:
View/edit binary Protocol Buffers messages
Msg defines the x/auth Msg service.
UpdateParams defines a (governance) operation for updating the x/auth module parameters. The authority defaults to the x/gov module account. Since: cosmos-sdk 0.47
MsgUpdateParams is the Msg/UpdateParams request type. Since: cosmos-sdk 0.47
authority is the address that controls the module (defaults to x/gov unless overwritten).
params defines the x/auth parameters to update. NOTE: All parameters must be supplied.
MsgUpdateParamsResponse defines the response structure for executing a MsgUpdateParams message. Since: cosmos-sdk 0.47
(message has no fields)
Query defines the gRPC querier service.
Accounts returns all the existing accounts. When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set. Since: cosmos-sdk 0.43
QueryAccountsRequest is the request type for the Query/Accounts RPC method. Since: cosmos-sdk 0.43
pagination defines an optional pagination for the request.
QueryAccountsResponse is the response type for the Query/Accounts RPC method. Since: cosmos-sdk 0.43
accounts are the existing accounts
pagination defines the pagination in the response.
Account returns account details based on address.
QueryAccountRequest is the request type for the Query/Account RPC method.
address defines the address to query for.
QueryAccountResponse is the response type for the Query/Account RPC method.
account defines the account of the corresponding address.
AccountAddressByID returns account address based on account number. Since: cosmos-sdk 0.46.2
QueryAccountAddressByIDRequest is the request type for AccountAddressByID rpc method Since: cosmos-sdk 0.46.2
Deprecated, use account_id instead id is the account number of the address to be queried. This field should have been an uint64 (like all account numbers), and will be updated to uint64 in a future version of the auth query.
account_id is the account number of the address to be queried. Since: cosmos-sdk 0.47
QueryAccountAddressByIDResponse is the response type for AccountAddressByID rpc method Since: cosmos-sdk 0.46.2
Params queries all parameters.
QueryParamsRequest is the request type for the Query/Params RPC method.
(message has no fields)
QueryParamsResponse is the response type for the Query/Params RPC method.
params defines the parameters of the module.
ModuleAccounts returns all the existing module accounts. Since: cosmos-sdk 0.46
QueryModuleAccountsRequest is the request type for the Query/ModuleAccounts RPC method. Since: cosmos-sdk 0.46
(message has no fields)
QueryModuleAccountsResponse is the response type for the Query/ModuleAccounts RPC method. Since: cosmos-sdk 0.46
ModuleAccountByName returns the module account info by module name
QueryModuleAccountByNameRequest is the request type for the Query/ModuleAccountByName RPC method.
QueryModuleAccountByNameResponse is the response type for the Query/ModuleAccountByName RPC method.
Bech32Prefix queries bech32Prefix Since: cosmos-sdk 0.46
Bech32PrefixRequest is the request type for Bech32Prefix rpc method. Since: cosmos-sdk 0.46
(message has no fields)
Bech32PrefixResponse is the response type for Bech32Prefix rpc method. Since: cosmos-sdk 0.46
AddressBytesToString converts Account Address bytes to string Since: cosmos-sdk 0.46
AddressBytesToStringRequest is the request type for AddressString rpc method. Since: cosmos-sdk 0.46
AddressBytesToStringResponse is the response type for AddressString rpc method. Since: cosmos-sdk 0.46
AddressStringToBytes converts Address string to bytes Since: cosmos-sdk 0.46
AddressStringToBytesRequest is the request type for AccountBytes rpc method. Since: cosmos-sdk 0.46
AddressStringToBytesResponse is the response type for AddressBytes rpc method. Since: cosmos-sdk 0.46
AccountInfo queries account info which is common to all account types. Since: cosmos-sdk 0.47
QueryAccountInfoRequest is the Query/AccountInfo request type. Since: cosmos-sdk 0.47
address is the account address string.
QueryAccountInfoResponse is the Query/AccountInfo response type. Since: cosmos-sdk 0.47
info is the account info which is represented by BaseAccount.
BaseAccount defines a base account type. It contains all the necessary fields for basic account functionality. Any custom account type should extend this type for additional functionality (e.g. vesting).
Used in:
, , , ,GenesisState defines the auth module's genesis state.
params defines all the parameters of the module.
accounts are the accounts present at genesis.
ModuleAccount defines an account for modules that holds coins on a pool.
Used in:
,ModuleCredential represents a unclaimable pubkey for base accounts controlled by modules. Since: cosmos-sdk 0.47
module_name is the name of the module used for address derivation (passed into address.Module).
derivation_keys is for deriving a module account address (passed into address.Module) adding more keys creates sub-account addresses (passed into address.Derive)
Params defines the parameters for the auth module.
Used in:
, ,