mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
206 lines
5.6 KiB
Go
206 lines
5.6 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/client/tx"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/version"
|
|
|
|
"github.com/0glabs/0g-chain/x/issuance/types"
|
|
)
|
|
|
|
// GetTxCmd returns the transaction cli commands for the issuance module
|
|
func GetTxCmd() *cobra.Command {
|
|
issuanceTxCmd := &cobra.Command{
|
|
Use: types.ModuleName,
|
|
Short: "transaction commands for the issuance module",
|
|
}
|
|
|
|
cmds := []*cobra.Command{
|
|
GetCmdIssueTokens(),
|
|
GetCmdRedeemTokens(),
|
|
GetCmdBlockAddress(),
|
|
GetCmdUnblockAddress(),
|
|
GetCmdPauseAsset(),
|
|
}
|
|
|
|
for _, cmd := range cmds {
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
}
|
|
|
|
issuanceTxCmd.AddCommand(cmds...)
|
|
|
|
return issuanceTxCmd
|
|
}
|
|
|
|
func GetCmdIssueTokens() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "issue [tokens] [receiver]",
|
|
Short: "issue new tokens to the receiver address",
|
|
Long: "The asset owner issues new tokens that will be credited to the receiver address",
|
|
Example: fmt.Sprintf(`$ %s tx %s issue 20000000usdtoken 0g15qdefkmwswysgg4qxgqpqr35k3m49pkx2jdfnw
|
|
`, version.AppName, types.ModuleName),
|
|
Args: cobra.ExactArgs(2),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx, err := client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
tokens, err := sdk.ParseCoinNormalized(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// We use the string later but here validate the acc address
|
|
receiver, err := sdk.AccAddressFromBech32(args[1])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msg := types.NewMsgIssueTokens(cliCtx.GetFromAddress().String(), tokens, receiver.String())
|
|
err = msg.ValidateBasic()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return tx.GenerateOrBroadcastTxCLI(cliCtx, cmd.Flags(), msg)
|
|
},
|
|
}
|
|
}
|
|
|
|
func GetCmdRedeemTokens() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "redeem [tokens]",
|
|
Short: "redeem tokens",
|
|
Long: "The asset owner redeems (burns) tokens, removing them from the circulating supply",
|
|
Example: fmt.Sprintf(`$ %s tx %s redeem 20000000usdtoken
|
|
`, version.AppName, types.ModuleName),
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx, err := client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
tokens, err := sdk.ParseCoinNormalized(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msg := types.NewMsgRedeemTokens(cliCtx.GetFromAddress().String(), tokens)
|
|
err = msg.ValidateBasic()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return tx.GenerateOrBroadcastTxCLI(cliCtx, cmd.Flags(), msg)
|
|
},
|
|
}
|
|
}
|
|
|
|
func GetCmdBlockAddress() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "block [address] [denom]",
|
|
Short: "block an address for the input denom",
|
|
Long: "The asset owner blocks an address from holding coins of that denomination. Any tokens of the input denomination held by the address will be sent to the owner address",
|
|
Example: fmt.Sprintf(`$ %s tx %s block 0g15qdefkmwswysgg4qxgqpqr35k3m49pkx2jdfnw usdtoken
|
|
`, version.AppName, types.ModuleName),
|
|
Args: cobra.ExactArgs(2),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx, err := client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
address, err := sdk.AccAddressFromBech32(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = sdk.ValidateDenom(args[1])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
msg := types.NewMsgBlockAddress(cliCtx.GetFromAddress().String(), args[1], address.String())
|
|
err = msg.ValidateBasic()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return tx.GenerateOrBroadcastTxCLI(cliCtx, cmd.Flags(), msg)
|
|
},
|
|
}
|
|
}
|
|
|
|
func GetCmdUnblockAddress() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "unblock [address] [denom]",
|
|
Short: "unblock an address for the input denom",
|
|
Long: "The asset owner unblocks an address from holding coins of that denomination.",
|
|
Example: fmt.Sprintf(`$ %s tx %s unblock 0g15qdefkmwswysgg4qxgqpqr35k3m49pkx2jdfnw usdtoken
|
|
`, version.AppName, types.ModuleName),
|
|
Args: cobra.ExactArgs(2),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx, err := client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
address, err := sdk.AccAddressFromBech32(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = sdk.ValidateDenom(args[1])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
msg := types.NewMsgUnblockAddress(cliCtx.GetFromAddress().String(), args[1], address.String())
|
|
err = msg.ValidateBasic()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return tx.GenerateOrBroadcastTxCLI(cliCtx, cmd.Flags(), msg)
|
|
},
|
|
}
|
|
}
|
|
|
|
func GetCmdPauseAsset() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "set-pause-status [denom] [status]",
|
|
Short: "pause or unpause an asset",
|
|
Long: "The asset owner pauses or un-pauses the input asset, halting new issuance and redemption",
|
|
Example: fmt.Sprintf(`$ %s tx %s pause usdtoken true
|
|
`, version.AppName, types.ModuleName),
|
|
Args: cobra.ExactArgs(2),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx, err := client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = sdk.ValidateDenom(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var status bool
|
|
if args[1] == "true" {
|
|
status = true
|
|
} else if args[1] == "false" {
|
|
status = false
|
|
} else {
|
|
return fmt.Errorf(fmt.Sprintf("status must be true or false, got %s", args[1]))
|
|
}
|
|
|
|
msg := types.NewMsgSetPauseStatus(cliCtx.GetFromAddress().String(), args[0], status)
|
|
err = msg.ValidateBasic()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return tx.GenerateOrBroadcastTxCLI(cliCtx, cmd.Flags(), msg)
|
|
},
|
|
}
|
|
}
|