Get desktop application:
View/edit binary Protocol Buffers messages
Msg defines the bank Msg service.
MultiSend defines a method for sending coins from some accounts to other accounts.
MsgMultiSend represents an arbitrary multi-in, multi-out send message.
MsgMultiSendResponse defines the Msg/MultiSend response type.
(message has no fields)
Send defines a method for sending coins from one account to another account.
MsgSend represents a message to send coins from one account to another.
MsgSendResponse defines the Msg/Send response type.
(message has no fields)
Query defines the gRPC querier service.
AllBalances queries the balance of all coins for a single account.
QueryBalanceRequest is the request type for the Query/AllBalances RPC method.
address is the address to query balances for.
pagination defines an optional pagination for the request.
QueryAllBalancesResponse is the response type for the Query/AllBalances RPC method.
balances is the balances of all the coins.
pagination defines the pagination in the response.
Balance queries the balance of a single coin for a single account.
QueryBalanceRequest is the request type for the Query/Balance RPC method.
address is the address to query balances for.
denom is the coin denom to query balances for.
QueryBalanceResponse is the response type for the Query/Balance RPC method.
balance is the balance of the coin.
Params queries the parameters of x/bank module.
QueryParamsRequest defines the request type for querying x/bank parameters.
(message has no fields)
QueryParamsResponse defines the response type for querying x/bank parameters.
SupplyOf queries the supply of a single coin.
QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method.
denom is the coin denom to query balances for.
QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method.
amount is the supply of the coin.
TotalSupply queries the total supply of all coins.
QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC method.
(message has no fields)
QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC method
supply is the supply of the coins
DenomUnit represents a struct that describes a given denomination unit of the basic token.
Used in:
denom represents the string name of the given denom unit (e.g uatom).
exponent represents power of 10 exponent that one must raise the base_denom to in order to equal the given DenomUnit's denom 1 denom = 1^exponent base_denom (e.g. with a base_denom of uatom, one can create a DenomUnit of 'atom' with exponent = 6, thus: 1 atom = 10^6 uatom).
aliases is a list of string aliases for the given denom
Input models transaction input.
Used in:
Metadata represents a struct that describes a basic token.
denom_units represents the list of DenomUnit's for a given coin
base represents the base denom (should be the DenomUnit with exponent = 0).
display indicates the suggested denom that should be displayed in clients.
Output models transaction outputs.
Used in:
Params defines the parameters for the bank module.
Used in:
SendEnabled maps coin denom to a send_enabled status (whether a denom is sendable).
Used in:
Supply represents a struct that passively keeps track of the total supply amounts in the network.