-
Notifications
You must be signed in to change notification settings - Fork 204
/
tx_register_host_zone.go
58 lines (48 loc) · 1.35 KB
/
tx_register_host_zone.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package cli
import (
"strconv"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/cosmos/cosmos-sdk/client/tx"
"github.com/spf13/cobra"
"github.com/Stride-Labs/stride/v6/x/stakeibc/types"
)
var _ = strconv.Itoa(0)
// TODO(TEST-53): Remove this pre-launch (no need for clients to create / interact with ICAs)
func CmdRegisterHostZone() *cobra.Command {
cmd := &cobra.Command{
Use: "register-host-zone [connection-id] [host-denom] [bech32prefix] [ibc-denom] [channel-id] [unbonding-frequency]",
Short: "Broadcast message register-host-zone",
Args: cobra.ExactArgs(6),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientTxContext(cmd)
if err != nil {
return err
}
connectionId := args[0]
hostDenom := args[1]
bech32prefix := args[2]
ibcDenom := args[3]
channelId := args[4]
unbondingFrequency, err := strconv.ParseUint(args[5], 10, 64)
if err != nil {
return err
}
msg := types.NewMsgRegisterHostZone(
clientCtx.GetFromAddress().String(),
connectionId,
bech32prefix,
hostDenom,
ibcDenom,
channelId,
unbondingFrequency,
)
if err := msg.ValidateBasic(); err != nil {
return err
}
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
},
}
flags.AddTxFlagsToCmd(cmd)
return cmd
}