2024-03-04 11:16:09 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
|
|
"github.com/cosmos/cosmos-sdk/version"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
2024-04-01 09:57:26 +00:00
|
|
|
bondtypes "git.vdb.to/cerc-io/laconicd/x/bond"
|
2024-03-04 11:16:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetQueryBondList implements the bond lists query command.
|
|
|
|
func GetQueryBondList() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "list",
|
|
|
|
Short: "List bonds.",
|
|
|
|
Long: strings.TrimSpace(
|
|
|
|
fmt.Sprintf(`Get bond list .
|
|
|
|
|
|
|
|
Example:
|
|
|
|
$ %s query %s list
|
|
|
|
`,
|
|
|
|
version.AppName, bondtypes.ModuleName,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Args: cobra.ExactArgs(0),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
clientCtx, err := client.GetClientQueryContext(cmd)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
queryClient := bondtypes.NewQueryClient(clientCtx)
|
2024-03-07 11:25:15 +00:00
|
|
|
res, err := queryClient.Bonds(cmd.Context(), &bondtypes.QueryBondsRequest{})
|
2024-03-04 11:16:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return clientCtx.PrintProto(res)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
flags.AddQueryFlagsToCmd(cmd)
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|