-
Notifications
You must be signed in to change notification settings - Fork 204
/
tx.go
41 lines (33 loc) · 1.16 KB
/
tx.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
package cli
import (
"fmt"
"time"
"github.com/spf13/cast"
"github.com/spf13/cobra"
"github.com/cosmos/cosmos-sdk/client"
"github.com/Stride-Labs/stride/v3/x/stakeibc/types"
)
var DefaultRelativePacketTimeoutTimestamp = cast.ToUint64((time.Duration(10) * time.Minute).Nanoseconds())
// GetTxCmd returns the transaction commands for this module
func GetTxCmd() *cobra.Command {
cmd := &cobra.Command{
Use: types.ModuleName,
Short: fmt.Sprintf("%s transactions subcommands", types.ModuleName),
DisableFlagParsing: true,
SuggestionsMinimumDistance: 2,
RunE: client.ValidateCmd,
}
cmd.AddCommand(CmdLiquidStake())
cmd.AddCommand(CmdRegisterHostZone())
cmd.AddCommand(CmdRedeemStake())
cmd.AddCommand(CmdClaimUndelegatedTokens())
cmd.AddCommand(CmdRebalanceValidators())
cmd.AddCommand(CmdAddValidator())
cmd.AddCommand(CmdChangeValidatorWeight())
cmd.AddCommand(CmdDeleteValidator())
cmd.AddCommand(CmdRestoreInterchainAccount())
cmd.AddCommand(CmdUpdateValidatorSharesExchRate())
cmd.AddCommand(CmdClearBalance())
// this line is used by starport scaffolding # 1
return cmd
}