62 lines
1.6 KiB
Go
62 lines
1.6 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/client/tx"
|
|
"github.com/cosmos/cosmos-sdk/version"
|
|
"github.com/cosmos/cosmos-sdk/x/nft"
|
|
)
|
|
|
|
// GetTxCmd returns the transaction commands for this module
|
|
func GetTxCmd() *cobra.Command {
|
|
nftTxCmd := &cobra.Command{
|
|
Use: nft.ModuleName,
|
|
Short: "nft transactions subcommands",
|
|
Long: "Provides the most common nft logic for upper-level applications, compatible with Ethereum's erc721 contract",
|
|
DisableFlagParsing: true,
|
|
SuggestionsMinimumDistance: 2,
|
|
RunE: client.ValidateCmd,
|
|
}
|
|
|
|
nftTxCmd.AddCommand(
|
|
NewCmdSend(),
|
|
)
|
|
|
|
return nftTxCmd
|
|
}
|
|
|
|
// NewCmdSend creates a CLI command for MsgSend.
|
|
func NewCmdSend() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "send [class-id] [nft-id] [receiver] --from [sender]",
|
|
Args: cobra.ExactArgs(3),
|
|
Short: "transfer ownership of nft",
|
|
Long: strings.TrimSpace(fmt.Sprintf(`
|
|
$ %s tx %s send <class-id> <nft-id> <receiver> --from <sender> --chain-id <chain-id>`, version.AppName, nft.ModuleName),
|
|
),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msg := nft.MsgSend{
|
|
ClassId: args[0],
|
|
Id: args[1],
|
|
Sender: clientCtx.GetFromAddress().String(),
|
|
Receiver: args[2],
|
|
}
|
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), &msg)
|
|
},
|
|
}
|
|
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
return cmd
|
|
}
|