cosmos-sdk/client/tx/tx.go

100 lines
2.2 KiB
Go
Raw Normal View History

package tx
import (
"encoding/hex"
"encoding/json"
"fmt"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"github.com/spf13/viper"
2018-02-28 19:17:48 -08:00
"github.com/cosmos/cosmos-sdk/client"
sdk "github.com/cosmos/cosmos-sdk/types"
abci "github.com/tendermint/abci/types"
2018-02-28 17:57:38 -08:00
wire "github.com/tendermint/go-wire"
ctypes "github.com/tendermint/tendermint/rpc/core/types"
)
2018-02-28 17:57:38 -08:00
// Get the default command for a tx query
func QueryTxCmd(cmdr commander) *cobra.Command {
cmd := &cobra.Command{
2018-02-28 17:57:38 -08:00
Use: "tx [hash]",
Short: "Matches this txhash over all committed blocks",
2018-02-28 17:57:38 -08:00
RunE: cmdr.queryTxCmd,
}
cmd.Flags().StringP(client.FlagNode, "n", "tcp://localhost:46657", "Node to connect to")
// TODO: change this to false when we can
cmd.Flags().Bool(client.FlagTrustNode, true, "Don't verify proofs for responses")
return cmd
}
2018-02-28 15:26:39 -08:00
// command to query for a transaction
2018-02-28 17:57:38 -08:00
func (c commander) queryTxCmd(cmd *cobra.Command, args []string) error {
if len(args) != 1 || len(args[0]) == 0 {
return errors.New("You must provide a tx hash")
}
// find the key to look up the account
hexStr := args[0]
hash, err := hex.DecodeString(hexStr)
if err != nil {
return err
}
// get the node
2018-02-28 15:26:39 -08:00
node, err := client.GetNode()
if err != nil {
return err
}
prove := !viper.GetBool(client.FlagTrustNode)
res, err := node.Tx(hash, prove)
if err != nil {
return err
}
2018-02-28 17:57:38 -08:00
info, err := formatTxResult(c.cdc, res)
if err != nil {
return err
}
output, err := json.MarshalIndent(info, "", " ")
if err != nil {
return err
}
fmt.Println(string(output))
return nil
}
2018-02-28 17:57:38 -08:00
func formatTxResult(cdc *wire.Codec, res *ctypes.ResultTx) (txInfo, error) {
// TODO: verify the proof if requested
2018-02-28 17:57:38 -08:00
tx, err := parseTx(cdc, res.Tx)
if err != nil {
return txInfo{}, err
}
info := txInfo{
Height: res.Height,
Tx: tx,
Result: res.TxResult,
}
return info, nil
}
// txInfo is used to prepare info to display
type txInfo struct {
Height int64 `json:"height"`
Tx sdk.Tx `json:"tx"`
Result abci.ResponseDeliverTx `json:"result"`
}
2018-02-28 17:57:38 -08:00
func parseTx(cdc *wire.Codec, txBytes []byte) (sdk.Tx, error) {
var tx sdk.StdTx
err := cdc.UnmarshalBinary(txBytes, &tx)
if err != nil {
return nil, err
}
return tx, nil
}