mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
e9f5043c84
* borrows, borrow, borrowed queries * update deposit, withdraw, claim rest txs * add borrow, repay, liquidate rest tx * update liquidate on handler
376 lines
11 KiB
Go
376 lines
11 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
supplyexported "github.com/cosmos/cosmos-sdk/x/supply/exported"
|
|
|
|
"github.com/kava-labs/kava/x/hard/types"
|
|
)
|
|
|
|
// flags for cli queries
|
|
const (
|
|
flagName = "name"
|
|
flagDepositDenom = "deposit-denom"
|
|
flagOwner = "owner"
|
|
flagClaimType = "claim-type"
|
|
)
|
|
|
|
// GetQueryCmd returns the cli query commands for the module
|
|
func GetQueryCmd(queryRoute string, cdc *codec.Codec) *cobra.Command {
|
|
hardQueryCmd := &cobra.Command{
|
|
Use: types.ModuleName,
|
|
Short: "Querying commands for the hard module",
|
|
DisableFlagParsing: true,
|
|
SuggestionsMinimumDistance: 2,
|
|
RunE: client.ValidateCmd,
|
|
}
|
|
|
|
hardQueryCmd.AddCommand(flags.GetCommands(
|
|
queryParamsCmd(queryRoute, cdc),
|
|
queryModAccountsCmd(queryRoute, cdc),
|
|
queryDepositsCmd(queryRoute, cdc),
|
|
queryClaimsCmd(queryRoute, cdc),
|
|
queryBorrowsCmd(queryRoute, cdc),
|
|
queryBorrowCmd(queryRoute, cdc),
|
|
)...)
|
|
|
|
return hardQueryCmd
|
|
|
|
}
|
|
|
|
func queryParamsCmd(queryRoute string, cdc *codec.Codec) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "params",
|
|
Short: "get the hard module parameters",
|
|
Long: "Get the current global hard module parameters.",
|
|
Args: cobra.NoArgs,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
|
|
// Query
|
|
route := fmt.Sprintf("custom/%s/%s", queryRoute, types.QueryGetParams)
|
|
res, height, err := cliCtx.QueryWithData(route, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
// Decode and print results
|
|
var params types.Params
|
|
if err := cdc.UnmarshalJSON(res, ¶ms); err != nil {
|
|
return fmt.Errorf("failed to unmarshal params: %w", err)
|
|
}
|
|
return cliCtx.PrintOutput(params)
|
|
},
|
|
}
|
|
}
|
|
|
|
func queryModAccountsCmd(queryRoute string, cdc *codec.Codec) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "accounts",
|
|
Short: "query hard module accounts with optional filter",
|
|
Long: strings.TrimSpace(`Query for all hard module accounts or a specific account using the name flag:
|
|
|
|
Example:
|
|
$ kvcli q hard accounts
|
|
$ kvcli q hard accounts --name hard|hard_delegator_distribution|hard_lp_distribution`,
|
|
),
|
|
Args: cobra.NoArgs,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
|
|
name := viper.GetString(flagName)
|
|
page := viper.GetInt(flags.FlagPage)
|
|
limit := viper.GetInt(flags.FlagLimit)
|
|
|
|
params := types.NewQueryAccountParams(page, limit, name)
|
|
bz, err := cdc.MarshalJSON(params)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
route := fmt.Sprintf("custom/%s/%s", queryRoute, types.QueryGetModuleAccounts)
|
|
res, height, err := cliCtx.QueryWithData(route, bz)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
var modAccounts []supplyexported.ModuleAccountI
|
|
if err := cdc.UnmarshalJSON(res, &modAccounts); err != nil {
|
|
return fmt.Errorf("failed to unmarshal module accounts: %w", err)
|
|
}
|
|
return cliCtx.PrintOutput(modAccounts)
|
|
},
|
|
}
|
|
}
|
|
|
|
func queryDepositsCmd(queryRoute string, cdc *codec.Codec) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "deposits",
|
|
Short: "query hard module deposits with optional filters",
|
|
Long: strings.TrimSpace(`query for all hard module deposits or a specific deposit using flags:
|
|
|
|
Example:
|
|
$ kvcli q hard deposits
|
|
$ kvcli q hard deposits --owner kava1l0xsq2z7gqd7yly0g40y5836g0appumark77ny --deposit-denom bnb
|
|
$ kvcli q hard deposits --deposit-denom ukava
|
|
$ kvcli q hard deposits --deposit-denom btcb`,
|
|
),
|
|
Args: cobra.NoArgs,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
|
|
var owner sdk.AccAddress
|
|
|
|
ownerBech := viper.GetString(flagOwner)
|
|
depositDenom := viper.GetString(flagDepositDenom)
|
|
|
|
if len(ownerBech) != 0 {
|
|
depositOwner, err := sdk.AccAddressFromBech32(ownerBech)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
owner = depositOwner
|
|
}
|
|
|
|
page := viper.GetInt(flags.FlagPage)
|
|
limit := viper.GetInt(flags.FlagLimit)
|
|
|
|
params := types.NewQueryDepositParams(page, limit, depositDenom, owner)
|
|
bz, err := cdc.MarshalJSON(params)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
route := fmt.Sprintf("custom/%s/%s", queryRoute, types.QueryGetDeposits)
|
|
res, height, err := cliCtx.QueryWithData(route, bz)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
var deposits []types.Deposit
|
|
if err := cdc.UnmarshalJSON(res, &deposits); err != nil {
|
|
return fmt.Errorf("failed to unmarshal deposits: %w", err)
|
|
}
|
|
return cliCtx.PrintOutput(deposits)
|
|
},
|
|
}
|
|
cmd.Flags().Int(flags.FlagPage, 1, "pagination page to query for")
|
|
cmd.Flags().Int(flags.FlagLimit, 100, "pagination limit (max 100)")
|
|
cmd.Flags().String(flagOwner, "", "(optional) filter for deposits by owner address")
|
|
cmd.Flags().String(flagDepositDenom, "", "(optional) filter for deposits by denom")
|
|
return cmd
|
|
}
|
|
|
|
func queryClaimsCmd(queryRoute string, cdc *codec.Codec) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "claims",
|
|
Short: "query hard module claims with optional filters",
|
|
Long: strings.TrimSpace(`query for all hard module claims or a specific claim using flags:
|
|
|
|
Example:
|
|
$ kvcli q hard claims
|
|
$ kvcli q hard claims --owner kava1l0xsq2z7gqd7yly0g40y5836g0appumark77ny --claim-type lp --deposit-denom bnb
|
|
$ kvcli q hard claims --claim-type stake --deposit-denom ukava
|
|
$ kvcli q hard claims --deposit-denom btcb`,
|
|
),
|
|
Args: cobra.NoArgs,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
|
|
var owner sdk.AccAddress
|
|
var claimType types.ClaimType
|
|
|
|
ownerBech := viper.GetString(flagOwner)
|
|
depositDenom := viper.GetString(flagDepositDenom)
|
|
claimTypeStr := viper.GetString(flagClaimType)
|
|
|
|
if len(ownerBech) != 0 {
|
|
claimOwner, err := sdk.AccAddressFromBech32(ownerBech)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
owner = claimOwner
|
|
}
|
|
|
|
if len(claimTypeStr) != 0 {
|
|
if err := types.ClaimType(claimTypeStr).IsValid(); err != nil {
|
|
return err
|
|
}
|
|
claimType = types.ClaimType(claimTypeStr)
|
|
}
|
|
|
|
page := viper.GetInt(flags.FlagPage)
|
|
limit := viper.GetInt(flags.FlagLimit)
|
|
|
|
params := types.NewQueryClaimParams(page, limit, depositDenom, owner, claimType)
|
|
bz, err := cdc.MarshalJSON(params)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
route := fmt.Sprintf("custom/%s/%s", queryRoute, types.QueryGetClaims)
|
|
res, height, err := cliCtx.QueryWithData(route, bz)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
var claims []types.Claim
|
|
if err := cdc.UnmarshalJSON(res, &claims); err != nil {
|
|
return fmt.Errorf("failed to unmarshal claims: %w", err)
|
|
}
|
|
return cliCtx.PrintOutput(claims)
|
|
},
|
|
}
|
|
cmd.Flags().Int(flags.FlagPage, 1, "pagination page to query for")
|
|
cmd.Flags().Int(flags.FlagLimit, 100, "pagination limit (max 100)")
|
|
cmd.Flags().String(flagOwner, "", "(optional) filter for claims by owner address")
|
|
cmd.Flags().String(flagDepositDenom, "", "(optional) filter for claims by denom")
|
|
cmd.Flags().String(flagClaimType, "", "(optional) filter for claims by type (lp or staking)")
|
|
return cmd
|
|
}
|
|
|
|
func queryBorrowsCmd(queryRoute string, cdc *codec.Codec) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "borrows",
|
|
Short: "query hard module borrows with optional filters",
|
|
Long: strings.TrimSpace(`query for all hard module borrows or a specific borrow using flags:
|
|
|
|
Example:
|
|
$ kvcli q hard borrows
|
|
$ kvcli q hard borrows --borrower kava1l0xsq2z7gqd7yly0g40y5836g0appumark77ny
|
|
$ kvcli q hard borrows --borrow-denom bnb`,
|
|
),
|
|
Args: cobra.NoArgs,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
|
|
var owner sdk.AccAddress
|
|
|
|
ownerBech := viper.GetString(flagOwner)
|
|
depositDenom := viper.GetString(flagDepositDenom)
|
|
|
|
if len(ownerBech) != 0 {
|
|
borrowOwner, err := sdk.AccAddressFromBech32(ownerBech)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
owner = borrowOwner
|
|
}
|
|
|
|
page := viper.GetInt(flags.FlagPage)
|
|
limit := viper.GetInt(flags.FlagLimit)
|
|
|
|
params := types.NewQueryBorrowsParams(page, limit, owner, depositDenom)
|
|
bz, err := cdc.MarshalJSON(params)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
route := fmt.Sprintf("custom/%s/%s", queryRoute, types.QueryGetBorrows)
|
|
res, height, err := cliCtx.QueryWithData(route, bz)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
var borrows []types.Borrow
|
|
if err := cdc.UnmarshalJSON(res, &borrows); err != nil {
|
|
return fmt.Errorf("failed to unmarshal borrows: %w", err)
|
|
}
|
|
return cliCtx.PrintOutput(borrows)
|
|
},
|
|
}
|
|
cmd.Flags().Int(flags.FlagPage, 1, "pagination page to query for")
|
|
cmd.Flags().Int(flags.FlagLimit, 100, "pagination limit (max 100)")
|
|
cmd.Flags().String(flagOwner, "", "(optional) filter for borrows by owner address")
|
|
return cmd
|
|
}
|
|
|
|
func queryBorrowedCmd(queryRoute string, cdc *codec.Codec) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "borrowed",
|
|
Short: "get total current borrowed amount",
|
|
Long: "get the total amount of coins currently borrowed for the Hard protocol",
|
|
Args: cobra.NoArgs,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
|
|
// Query
|
|
route := fmt.Sprintf("custom/%s/%s", queryRoute, types.QueryGetBorrowed)
|
|
res, height, err := cliCtx.QueryWithData(route, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
// Decode and print results
|
|
var borrowedCoins sdk.Coins
|
|
if err := cdc.UnmarshalJSON(res, &borrowedCoins); err != nil {
|
|
return fmt.Errorf("failed to unmarshal borrowed coins: %w", err)
|
|
}
|
|
return cliCtx.PrintOutput(borrowedCoins)
|
|
},
|
|
}
|
|
}
|
|
|
|
func queryBorrowCmd(queryRoute string, cdc *codec.Codec) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "borrow",
|
|
Short: "query outstanding borrow balance for a user",
|
|
Long: strings.TrimSpace(`query outstanding borrow balance for a user:
|
|
Example:
|
|
$ kvcli q hard borrow --owner kava1l0xsq2z7gqd7yly0g40y5836g0appumark77ny`,
|
|
),
|
|
Args: cobra.NoArgs,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
|
|
var owner sdk.AccAddress
|
|
|
|
ownerBech := viper.GetString(flagOwner)
|
|
if len(ownerBech) != 0 {
|
|
borrowOwner, err := sdk.AccAddressFromBech32(ownerBech)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
owner = borrowOwner
|
|
}
|
|
|
|
params := types.NewQueryBorrowParams(owner)
|
|
bz, err := cdc.MarshalJSON(params)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
route := fmt.Sprintf("custom/%s/%s", queryRoute, types.QueryGetBorrow)
|
|
res, height, err := cliCtx.QueryWithData(route, bz)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
var balance sdk.Coins
|
|
if err := cdc.UnmarshalJSON(res, &balance); err != nil {
|
|
return fmt.Errorf("failed to unmarshal borrow balance: %w", err)
|
|
}
|
|
return cliCtx.PrintOutput(balance)
|
|
},
|
|
}
|
|
cmd.Flags().String(flagOwner, "", "filter for borrows by owner address")
|
|
return cmd
|
|
}
|