85 lines
1.7 KiB
Go
85 lines
1.7 KiB
Go
package commands
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/builder"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/wire"
|
|
|
|
"github.com/cosmos/cosmos-sdk/x/bank"
|
|
)
|
|
|
|
const (
|
|
flagTo = "to"
|
|
flagAmount = "amount"
|
|
)
|
|
|
|
// SendTxCommand will create a send tx and sign it with the given key
|
|
func SendTxCmd(cdc *wire.Codec) *cobra.Command {
|
|
cmdr := commander{cdc}
|
|
cmd := &cobra.Command{
|
|
Use: "send",
|
|
Short: "Create and sign a send tx",
|
|
RunE: cmdr.sendTxCmd,
|
|
}
|
|
cmd.Flags().String(flagTo, "", "Address to send coins")
|
|
cmd.Flags().String(flagAmount, "", "Amount of coins to send")
|
|
return cmd
|
|
}
|
|
|
|
type commander struct {
|
|
cdc *wire.Codec
|
|
}
|
|
|
|
func (c commander) sendTxCmd(cmd *cobra.Command, args []string) error {
|
|
|
|
// get the from address
|
|
from, err := builder.GetFromAddress()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// build send msg
|
|
msg, err := buildMsg(from)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// build and sign the transaction, then broadcast to Tendermint
|
|
res, err := builder.SignBuildBroadcast(msg, c.cdc)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Printf("Committed at block %d. Hash: %s\n", res.Height, res.Hash.String())
|
|
return nil
|
|
}
|
|
|
|
func buildMsg(from sdk.Address) (sdk.Msg, error) {
|
|
|
|
// parse coins
|
|
amount := viper.GetString(flagAmount)
|
|
coins, err := sdk.ParseCoins(amount)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// parse destination address
|
|
dest := viper.GetString(flagTo)
|
|
bz, err := hex.DecodeString(dest)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
to := sdk.Address(bz)
|
|
|
|
input := bank.NewInput(from, coins)
|
|
output := bank.NewOutput(to, coins)
|
|
msg := bank.NewSendMsg([]bank.Input{input}, []bank.Output{output})
|
|
return msg, nil
|
|
}
|