cosmos-sdk/x/bank/client/cli/sendtx.go

84 lines
2.1 KiB
Go
Raw Normal View History

2018-04-25 07:18:06 -07:00
package cli
import (
2018-07-09 01:47:38 -07:00
"github.com/pkg/errors"
"github.com/cosmos/cosmos-sdk/client/context"
sdk "github.com/cosmos/cosmos-sdk/types"
2018-03-02 01:24:07 -08:00
"github.com/cosmos/cosmos-sdk/wire"
"github.com/cosmos/cosmos-sdk/x/auth"
2018-04-25 07:18:06 -07:00
authcmd "github.com/cosmos/cosmos-sdk/x/auth/client/cli"
"github.com/cosmos/cosmos-sdk/x/bank/client"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
const (
2018-03-03 11:41:43 -08:00
flagTo = "to"
flagAmount = "amount"
)
// SendTxCmd will create a send tx and sign it with the given key
2018-04-18 21:49:24 -07:00
func SendTxCmd(cdc *wire.Codec) *cobra.Command {
cmd := &cobra.Command{
Use: "send",
Short: "Create and sign a send tx",
2018-04-18 21:49:24 -07:00
RunE: func(cmd *cobra.Command, args []string) error {
ctx := context.NewCoreContextFromViper().WithDecoder(authcmd.GetAccountDecoder(cdc))
2018-04-18 21:49:24 -07:00
// get the from/to address
from, err := ctx.GetFromAddress()
if err != nil {
return err
}
2018-03-30 05:57:53 -07:00
fromAcc, err := ctx.QueryStore(auth.AddressStoreKey(from), ctx.AccountStore)
if err != nil {
return err
}
// Check if account was found
if fromAcc == nil {
2018-07-09 01:47:38 -07:00
return errors.Errorf("No account with address %s was found in the state.\nAre you sure there has been a transaction involving it?", from)
}
2018-04-18 21:49:24 -07:00
toStr := viper.GetString(flagTo)
2018-06-01 07:23:58 -07:00
to, err := sdk.GetAccAddressBech32(toStr)
2018-04-18 21:49:24 -07:00
if err != nil {
return err
}
// parse coins trying to be sent
2018-04-18 21:49:24 -07:00
amount := viper.GetString(flagAmount)
coins, err := sdk.ParseCoins(amount)
if err != nil {
return err
}
2018-03-10 09:33:05 -08:00
// ensure account has enough coins
account, err := ctx.Decoder(fromAcc)
if err != nil {
return err
}
if !account.GetCoins().IsGTE(coins) {
2018-07-09 01:47:38 -07:00
return errors.Errorf("Address %s doesn't have enough coins to pay for this transaction.", from)
}
2018-04-18 21:49:24 -07:00
// build and sign the transaction, then broadcast to Tendermint
2018-04-25 07:18:06 -07:00
msg := client.BuildMsg(from, to, coins)
2018-07-05 22:19:50 -07:00
err = ctx.EnsureSignBuildBroadcast(ctx.FromAddressName, []sdk.Msg{msg}, cdc)
2018-04-18 21:49:24 -07:00
if err != nil {
return err
}
return nil
2018-04-18 21:49:24 -07:00
},
2018-03-10 09:33:05 -08:00
}
2018-04-18 21:49:24 -07:00
cmd.Flags().String(flagTo, "", "Address to send coins")
cmd.Flags().String(flagAmount, "", "Amount of coins to send")
2018-04-18 21:49:24 -07:00
return cmd
}