mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
8eb9e1d4a1
* add proto for LegacyCommunityPool query * add distribution keeper to community keeper * implement LegacyCommunityPool query * add cli cmd for legacy-community-pool
80 lines
2.1 KiB
Go
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(),
|
|
LegacyCommunityPoolCmd(),
|
|
}
|
|
|
|
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)
|
|
},
|
|
}
|
|
}
|
|
|
|
// LegacyCommunityPoolCmd implements a command to return the legacy community pool balance.
|
|
func LegacyCommunityPoolCmd() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "legacy-community-pool",
|
|
Short: "Query the current balance of the legacy community pool",
|
|
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.LegacyCommunityPool(cmd.Context(), &types.QueryLegacyCommunityPoolRequest{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return clientCtx.PrintProto(res)
|
|
},
|
|
}
|
|
}
|