0g-chain/x/liquidator/client/cli/query.go

50 lines
1.5 KiB
Go
Raw Normal View History

2019-11-25 19:46:02 +00:00
package cli
import (
"fmt"
"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"
"github.com/spf13/cobra"
"github.com/kava-labs/kava/x/liquidator/types"
)
// GetQueryCmd returns the cli query commands for this module
func GetQueryCmd(queryRoute string, cdc *codec.Codec) *cobra.Command {
// Group nameservice queries under a subcommand
queryCmd := &cobra.Command{
Use: "liquidator",
Short: "Querying commands for the cdp liquidator",
}
queryCmd.AddCommand(client.GetCommands(
GetCmdGetOutstandingDebt(queryRoute, cdc),
)...)
return queryCmd
}
// GetCmdGetOutstandingDebt queries for the remaining available debt in the liquidator module after settlement with the module's stablecoin balance.
func GetCmdGetOutstandingDebt(queryRoute string, cdc *codec.Codec) *cobra.Command {
return &cobra.Command{
Use: "debt",
Short: "get the outstanding seized debt",
Long: "Get the remaining available debt after settlement with the liquidator's stable coin balance.",
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
cliCtx := context.NewCLIContext().WithCodec(cdc)
res, _, err := cliCtx.QueryWithData(fmt.Sprintf("custom/%s/%s", queryRoute, types.QueryGetOutstandingDebt), nil)
if err != nil {
return err
}
var outstandingDebt sdk.Int
cdc.MustUnmarshalJSON(res, &outstandingDebt)
return cliCtx.PrintOutput(outstandingDebt)
},
}
}