Get desktop application:
View/edit binary Protocol Buffers messages
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.
Metadata represents a struct that describes a basic token.
Used in: ,
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.
name defines the name of the token (eg: Cosmos Atom) Since: cosmos-sdk 0.43
symbol is the token symbol usually shown on exchanges (eg: ATOM). This can be the same as the display. Since: cosmos-sdk 0.43
Output models transaction outputs.
Params defines the parameters for the bank module.
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. This message is deprecated now that supply is indexed by denom.