45 lines
1.0 KiB
Go
45 lines
1.0 KiB
Go
package cli
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
// GetAccountCmd returns a query account that will display the state of the
|
|
// account at a given address.
|
|
// nolint: unparam
|
|
func GetAccountCmd(storeName string, cdc *codec.Codec) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "account [address]",
|
|
Short: "Query account balance",
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx := context.NewCLIContext().
|
|
WithCodec(cdc).WithAccountDecoder(cdc)
|
|
|
|
key, err := sdk.AccAddressFromBech32(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err = cliCtx.EnsureAccountExistsFromAddr(key); err != nil {
|
|
return err
|
|
}
|
|
|
|
acc, err := cliCtx.GetAccount(key)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return cliCtx.PrintOutput(acc)
|
|
},
|
|
}
|
|
|
|
// Add the flags here and return the command
|
|
return client.GetCommands(cmd)[0]
|
|
}
|