fix: bank proto exponent doc (#10526)

* doc: fix bank denom exponent doc

* gen docs
This commit is contained in:
Robert Zaremba
2021-11-12 10:45:27 +01:00
committed by GitHub
parent ba843a351c
commit 878e3e8a4a
4 changed files with 84 additions and 84 deletions
+1 -1
View File
@@ -1820,7 +1820,7 @@ denomination unit of the basic token.
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| `denom` | [string](#string) | | denom represents the string name of the given denom unit (e.g uatom). |
| `exponent` | [uint32](#uint32) | | 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). |
| `exponent` | [uint32](#uint32) | | 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 = 10^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` | [string](#string) | repeated | aliases is a list of string aliases for the given denom |