0g-chain/x/community/client/cli/query.go
mergify[bot] db5f89b9be feat(community): add CLI cmd for annualized-rewards (backport #1756) (#1757)
* feat(community): add CLI cmd for annualized-rewards (#1756)

(cherry picked from commit 48ee996f61)

* resolve conflicts

---------

Co-authored-by: Robert Pirtle <Astropirtle@gmail.com>
2023-10-25 12:49:00 -07:00

80 lines
2.1 KiB
Go

package cli
import (
"github.com/spf13/cobra"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/kava-labs/kava/x/community/types"
)
// GetQueryCmd returns the cli query commands for the community module.
func GetQueryCmd() *cobra.Command {
communityQueryCmd := &cobra.Command{
Use: types.ModuleName,
Short: "Querying commands for the community module",
DisableFlagParsing: true,
SuggestionsMinimumDistance: 2,
RunE: client.ValidateCmd,
}
commands := []*cobra.Command{
getCmdQueryBalance(),
getCmdQueryAnnualizedRewards(),
}
for _, cmd := range commands {
flags.AddQueryFlagsToCmd(cmd)
}
communityQueryCmd.AddCommand(commands...)
return communityQueryCmd
}
// getCmdQueryBalance implements a command to return the current community pool balance.
func getCmdQueryBalance() *cobra.Command {
return &cobra.Command{
Use: "balance",
Short: "Query the current balance of the community module account",
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientQueryContext(cmd)
if err != nil {
return err
}
queryClient := types.NewQueryClient(clientCtx)
res, err := queryClient.Balance(cmd.Context(), &types.QueryBalanceRequest{})
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
}
// getCmdQueryAnnualizedRewards implements a command to return the current annualized rewards.
func getCmdQueryAnnualizedRewards() *cobra.Command {
return &cobra.Command{
Use: "annualized-rewards",
Short: "Query a current calculation of annualized rewards for the chain.",
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientQueryContext(cmd)
if err != nil {
return err
}
queryClient := types.NewQueryClient(clientCtx)
res, err := queryClient.AnnualizedRewards(cmd.Context(), &types.QueryAnnualizedRewardsRequest{})
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
}