feat(textual): Add Enum value renderer (#13853)
* feat(textual): Add Enum value renderer * parse * Update ADR * Fix test * Update tx/textual/internal/testpb/1.proto Co-authored-by: Likhita Polavarapu <78951027+likhita-809@users.noreply.github.com> Co-authored-by: Likhita Polavarapu <78951027+likhita-809@users.noreply.github.com>
This commit is contained in:
co-authored by
Likhita Polavarapu
parent
b585d17e72
commit
fe5b0ff4a5
@@ -153,23 +153,17 @@ Vote object
|
||||
> Vote: cosmos1abc...def
|
||||
> Options: 2 WeightedVoteOptions
|
||||
> Options (1/2): WeightedVoteOption object
|
||||
>> Option: Yes
|
||||
>> Option: VOTE_OPTION_YES
|
||||
>> Weight: 0.7
|
||||
> Options (2/2): WeightedVoteOption object
|
||||
>> Option: No
|
||||
>> Option: VOTE_OPTION_NO
|
||||
>> Weight: 0.3
|
||||
> End of Options
|
||||
```
|
||||
|
||||
### Enums
|
||||
|
||||
- String case convention: snake case to sentence case
|
||||
- Allow optional annotation for textual name (TBD)
|
||||
- Algorithm:
|
||||
- convert enum name (`VoteOption`) to snake_case (`VOTE_OPTION`)
|
||||
- truncate that prefix + `_` from the enum name if it exists (`VOTE_OPTION_` gets stripped from `VOTE_OPTION_YES` -> `YES`)
|
||||
- convert rest to sentence case: `YES` -> `Yes`
|
||||
- in summary: `VOTE_OPTION_YES` -> `Yes`
|
||||
- Show the enum variant name as string.
|
||||
|
||||
#### Examples
|
||||
|
||||
|
||||
@@ -402,7 +402,7 @@ Tip: 200 ibc/CDC4587874B85BEA4FCEC3CEA5A1195139799A1FEE711A07D972537E18FDA39D
|
||||
*This transaction has 1 other signer:
|
||||
*Signer (1/2):
|
||||
*Public Key: iQ...==
|
||||
*Sign mode: Direct Aux
|
||||
*Sign mode: SIGN_MODE_DIRECT_AUX
|
||||
*Sequence: 42
|
||||
*End of other signers
|
||||
*Hash of raw bytes: <hex_string>
|
||||
@@ -549,7 +549,7 @@ Fee: 0.002 atom
|
||||
*This transaction has 1 other signer:
|
||||
*Signer (2/2):
|
||||
*Public Key: iR...==
|
||||
*Sign mode: Direct
|
||||
*Sign mode: SIGN_MODE_DIRECT
|
||||
*Sequence: 42
|
||||
*End of other signers
|
||||
*Hash of raw bytes: <hex_string>
|
||||
|
||||
Reference in New Issue
Block a user