@@ -67,7 +67,7 @@ func keysAddCmd(ctx *cmdContext) *cobra.Command {
67
67
Args : cobra .ExactArgs (2 ),
68
68
Example : strings .TrimSpace (`
69
69
$ keys add localnet key1
70
- $ keys add l2 key2 --bech celestia
70
+ $ keys add l2 key2 --bech32 celestia
71
71
$ keys add l2 key2 --restore mnemonic.txt` ),
72
72
RunE : func (cmd * cobra.Command , args []string ) error {
73
73
chainId := args [0 ]
@@ -155,7 +155,7 @@ func keysListCmd(ctx *cmdContext) *cobra.Command {
155
155
Short : "Lists keys from the keychain associated with a particular chain" ,
156
156
Args : cobra .ExactArgs (1 ),
157
157
Example : strings .TrimSpace (`
158
- $ keys list localnet
158
+ $ keys list localnet --bech32 celestia
159
159
$ k l l2` ),
160
160
RunE : func (cmd * cobra.Command , args []string ) error {
161
161
chainId := args [0 ]
@@ -214,7 +214,7 @@ func keysShowCmd(ctx *cmdContext) *cobra.Command {
214
214
Short : "Shows the key from the keychain associated with a particular chain" ,
215
215
Args : cobra .ExactArgs (2 ),
216
216
Example : strings .TrimSpace (`
217
- $ keys show localnet key1
217
+ $ keys show localnet key1 --bech32 celestia
218
218
$ k s l2 key2` ),
219
219
RunE : func (cmd * cobra.Command , args []string ) error {
220
220
chainId := args [0 ]
@@ -265,7 +265,7 @@ func keysShowByAddressCmd(ctx *cmdContext) *cobra.Command {
265
265
Short : "Shows the key by address from the keychain associated with a particular chain" ,
266
266
Args : cobra .ExactArgs (2 ),
267
267
Example : strings .TrimSpace (`
268
- $ keys show-by-addr localnet key1
268
+ $ keys show-by-addr localnet key1 --bech32 celestia
269
269
$ k sa l2 key2` ),
270
270
RunE : func (cmd * cobra.Command , args []string ) error {
271
271
chainId := args [0 ]
@@ -313,7 +313,7 @@ func keysDeleteCmd(ctx *cmdContext) *cobra.Command {
313
313
Short : "Deletes the key from the keychain associated with a particular chain" ,
314
314
Args : cobra .ExactArgs (2 ),
315
315
Example : strings .TrimSpace (`
316
- $ keys delete localnet key1
316
+ $ keys delete localnet key1 --bech32 celestia
317
317
$ k d l2 key2` ),
318
318
RunE : func (cmd * cobra.Command , args []string ) error {
319
319
chainId := args [0 ]
0 commit comments