2024-02-16 06:40:42 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
2024-03-04 11:16:09 +00:00
|
|
|
"fmt"
|
2024-02-16 06:40:42 +00:00
|
|
|
"os"
|
2024-03-04 11:16:09 +00:00
|
|
|
"strings"
|
2024-02-16 06:40:42 +00:00
|
|
|
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/tx"
|
2024-03-04 11:16:09 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/version"
|
2024-02-16 06:40:42 +00:00
|
|
|
"gopkg.in/yaml.v3"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
2024-04-01 09:57:26 +00:00
|
|
|
registrytypes "git.vdb.to/cerc-io/laconicd/x/registry"
|
2024-02-16 06:40:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetTxCmd returns transaction commands for this module.
|
|
|
|
func GetTxCmd() *cobra.Command {
|
|
|
|
registryTxCmd := &cobra.Command{
|
|
|
|
Use: registrytypes.ModuleName,
|
|
|
|
Short: "registry transaction subcommands",
|
|
|
|
DisableFlagParsing: true,
|
|
|
|
SuggestionsMinimumDistance: 2,
|
|
|
|
RunE: client.ValidateCmd,
|
|
|
|
}
|
|
|
|
|
|
|
|
registryTxCmd.AddCommand(
|
|
|
|
GetCmdSetRecord(),
|
|
|
|
)
|
|
|
|
|
|
|
|
return registryTxCmd
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCmdSetRecord is the CLI command for creating/updating a record.
|
|
|
|
func GetCmdSetRecord() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "set [payload-file-path] [bond-id]",
|
|
|
|
Short: "Set record",
|
|
|
|
Args: cobra.ExactArgs(2),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
payloadType, err := GetPayloadFromFile(args[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
payload := payloadType.ToPayload()
|
|
|
|
|
|
|
|
msg := registrytypes.NewMsgSetRecord(payload, args[1], clientCtx.GetFromAddress())
|
|
|
|
err = msg.ValidateBasic()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetPayloadFromFile loads payload object from YAML file.
|
|
|
|
func GetPayloadFromFile(filePath string) (*registrytypes.ReadablePayload, error) {
|
|
|
|
var payload registrytypes.ReadablePayload
|
|
|
|
|
|
|
|
data, err := os.ReadFile(filePath) // #nosec G304
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = yaml.Unmarshal(data, &payload)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &payload, nil
|
|
|
|
}
|
2024-03-04 11:16:09 +00:00
|
|
|
|
2024-03-07 11:25:15 +00:00
|
|
|
// GetCmdReserveAuthority is the CLI command for reserving a name.
|
|
|
|
func GetCmdReserveAuthority() *cobra.Command {
|
2024-03-04 11:16:09 +00:00
|
|
|
cmd := &cobra.Command{
|
2024-03-12 04:35:20 +00:00
|
|
|
Use: "reserve-authority [name]",
|
|
|
|
Short: "Reserve authority name",
|
|
|
|
Args: cobra.ExactArgs(2),
|
2024-03-04 11:16:09 +00:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-03-12 04:35:20 +00:00
|
|
|
|
|
|
|
ownerAddress, err := sdk.AccAddressFromBech32(args[1])
|
2024-03-04 11:16:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
msg := registrytypes.NewMsgReserveAuthority(args[0], clientCtx.GetFromAddress(), ownerAddress)
|
|
|
|
err = msg.ValidateBasic()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), &msg)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.Flags().String("owner", "", "Owner address, if creating a sub-authority.")
|
|
|
|
|
|
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCmdSetAuthorityBond is the CLI command for associating a bond with an authority.
|
|
|
|
func GetCmdSetAuthorityBond() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "authority-bond [name] [bond-id]",
|
|
|
|
Short: "Associate authority with bond.",
|
|
|
|
Long: strings.TrimSpace(
|
|
|
|
fmt.Sprintf(`Reserver name with owner address .
|
|
|
|
Example:
|
|
|
|
$ %s tx %s authority-bond [name] [bond-id]
|
|
|
|
`,
|
|
|
|
version.AppName, registrytypes.ModuleName,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Args: cobra.ExactArgs(2),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
msg := registrytypes.NewMsgSetAuthorityBond(args[0], args[1], clientCtx.GetFromAddress())
|
|
|
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), &msg)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCmdSetName is the CLI command for mapping a name to a CID.
|
|
|
|
func GetCmdSetName() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "set-name [crn] [cid]",
|
|
|
|
Short: "Set CRN to CID mapping.",
|
|
|
|
Long: strings.TrimSpace(
|
|
|
|
fmt.Sprintf(`Set name with crn and cid.
|
|
|
|
Example:
|
|
|
|
$ %s tx %s set-name [crn] [cid]
|
|
|
|
`,
|
|
|
|
version.AppName, registrytypes.ModuleName,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Args: cobra.ExactArgs(2),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
msg := registrytypes.NewMsgSetName(args[0], args[1], clientCtx.GetFromAddress())
|
|
|
|
err = msg.ValidateBasic()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|