mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
50 lines
1.5 KiB
Go
50 lines
1.5 KiB
Go
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)
|
|
},
|
|
}
|
|
}
|