2020-04-24 15:20:34 +00:00
|
|
|
package rest
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2021-04-02 21:34:42 +00:00
|
|
|
"strconv"
|
2021-01-18 19:12:37 +00:00
|
|
|
"strings"
|
2020-04-24 15:20:34 +00:00
|
|
|
|
2020-04-30 14:23:41 +00:00
|
|
|
"github.com/gorilla/mux"
|
|
|
|
|
2020-04-24 15:20:34 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/types/rest"
|
2020-04-30 14:13:31 +00:00
|
|
|
|
2020-04-24 15:20:34 +00:00
|
|
|
"github.com/kava-labs/kava/x/incentive/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
func registerQueryRoutes(cliCtx context.CLIContext, r *mux.Router) {
|
2021-01-27 13:33:36 +00:00
|
|
|
r.HandleFunc(fmt.Sprintf("/%s/rewards", types.ModuleName), queryRewardsHandlerFn(cliCtx)).Methods("GET")
|
2020-04-24 15:20:34 +00:00
|
|
|
r.HandleFunc(fmt.Sprintf("/%s/parameters", types.ModuleName), queryParamsHandlerFn(cliCtx)).Methods("GET")
|
2021-04-02 21:34:42 +00:00
|
|
|
r.HandleFunc(fmt.Sprintf("/%s/reward-factors", types.ModuleName), queryRewardFactorsHandlerFn(cliCtx)).Methods("GET")
|
2020-04-24 15:20:34 +00:00
|
|
|
}
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
func queryRewardsHandlerFn(cliCtx context.CLIContext) http.HandlerFunc {
|
2020-04-24 15:20:34 +00:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2021-01-18 19:12:37 +00:00
|
|
|
_, page, limit, err := rest.ParseHTTPArgsWithLimit(r, 0)
|
2020-04-24 15:20:34 +00:00
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
|
|
|
|
return
|
|
|
|
}
|
2020-05-28 14:57:22 +00:00
|
|
|
cliCtx, ok := rest.ParseQueryHeightOrReturnBadRequest(w, cliCtx, r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-18 19:12:37 +00:00
|
|
|
var owner sdk.AccAddress
|
|
|
|
if x := r.URL.Query().Get(types.RestClaimOwner); len(x) != 0 {
|
|
|
|
ownerStr := strings.ToLower(strings.TrimSpace(x))
|
|
|
|
owner, err = sdk.AccAddressFromBech32(ownerStr)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("cannot parse address from claim owner %s", ownerStr))
|
|
|
|
return
|
|
|
|
}
|
2020-05-28 14:57:22 +00:00
|
|
|
}
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
var rewardType string
|
|
|
|
if x := r.URL.Query().Get(types.RestClaimType); len(x) != 0 {
|
|
|
|
rewardType = strings.ToLower(strings.TrimSpace(x))
|
2020-05-28 14:57:22 +00:00
|
|
|
}
|
|
|
|
|
2021-04-02 21:34:42 +00:00
|
|
|
var unsynced bool
|
|
|
|
if x := r.URL.Query().Get(types.RestUnsynced); len(x) != 0 {
|
|
|
|
unsyncedStr := strings.ToLower(strings.TrimSpace(x))
|
|
|
|
unsynced, err = strconv.ParseBool(unsyncedStr)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("cannot parse bool from unsynced flag %s", unsyncedStr))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if unsynced {
|
|
|
|
switch strings.ToLower(rewardType) {
|
|
|
|
case "hard":
|
|
|
|
params := types.NewQueryHardRewardsUnsyncedParams(page, limit, owner)
|
|
|
|
executeHardRewardsUnsyncedQuery(w, cliCtx, params)
|
|
|
|
case "usdx_minting":
|
|
|
|
params := types.NewQueryUSDXMintingRewardsUnsyncedParams(page, limit, owner)
|
|
|
|
executeUSDXMintingRewardsUnsyncedQuery(w, cliCtx, params)
|
2021-07-07 16:50:14 +00:00
|
|
|
case "delegator":
|
|
|
|
params := types.NewQueryDelegatorRewardsUnsyncedParams(page, limit, owner)
|
|
|
|
executeDelegatorRewardsUnsyncedQuery(w, cliCtx, params)
|
2021-04-02 21:34:42 +00:00
|
|
|
default:
|
|
|
|
hardParams := types.NewQueryHardRewardsUnsyncedParams(page, limit, owner)
|
|
|
|
usdxMintingParams := types.NewQueryUSDXMintingRewardsUnsyncedParams(page, limit, owner)
|
2021-07-07 16:50:14 +00:00
|
|
|
delegatorParams := types.NewQueryDelegatorRewardsUnsyncedParams(page, limit, owner)
|
|
|
|
executeAllUnsyncedRewardQueries(w, cliCtx, hardParams, usdxMintingParams, delegatorParams)
|
2021-04-02 21:34:42 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch strings.ToLower(rewardType) {
|
|
|
|
case "hard":
|
|
|
|
params := types.NewQueryHardRewardsParams(page, limit, owner)
|
|
|
|
executeHardRewardsQuery(w, cliCtx, params)
|
|
|
|
case "usdx_minting":
|
|
|
|
params := types.NewQueryUSDXMintingRewardsParams(page, limit, owner)
|
|
|
|
executeUSDXMintingRewardsQuery(w, cliCtx, params)
|
2021-07-07 16:50:14 +00:00
|
|
|
case "delegator":
|
|
|
|
params := types.NewQueryDelegatorRewardsParams(page, limit, owner)
|
|
|
|
executeDelegatorRewardsQuery(w, cliCtx, params)
|
2021-04-02 21:34:42 +00:00
|
|
|
default:
|
|
|
|
hardParams := types.NewQueryHardRewardsParams(page, limit, owner)
|
|
|
|
usdxMintingParams := types.NewQueryUSDXMintingRewardsParams(page, limit, owner)
|
2021-07-07 16:50:14 +00:00
|
|
|
delegatorParams := types.NewQueryDelegatorRewardsParams(page, limit, owner)
|
|
|
|
executeAllRewardQueries(w, cliCtx, hardParams, usdxMintingParams, delegatorParams)
|
2021-04-02 21:34:42 +00:00
|
|
|
}
|
2021-01-26 11:52:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
func queryParamsHandlerFn(cliCtx context.CLIContext) http.HandlerFunc {
|
2021-01-26 11:52:34 +00:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
cliCtx, ok := rest.ParseQueryHeightOrReturnBadRequest(w, cliCtx, r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
route := fmt.Sprintf("custom/%s/parameters", types.QuerierRoute)
|
2021-01-26 11:52:34 +00:00
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
res, height, err := cliCtx.QueryWithData(route, nil)
|
2020-05-28 14:57:22 +00:00
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
rest.PostProcessResponse(w, cliCtx, res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-02 21:34:42 +00:00
|
|
|
func queryRewardFactorsHandlerFn(cliCtx context.CLIContext) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
_, _, _, err := rest.ParseHTTPArgsWithLimit(r, 0)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Parse the query height
|
|
|
|
cliCtx, ok := rest.ParseQueryHeightOrReturnBadRequest(w, cliCtx, r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var denom string
|
|
|
|
|
|
|
|
if x := r.URL.Query().Get(RestDenom); len(x) != 0 {
|
|
|
|
denom = strings.TrimSpace(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
params := types.NewQueryRewardFactorsParams(denom)
|
|
|
|
|
|
|
|
bz, err := cliCtx.Codec.MarshalJSON(params)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
route := fmt.Sprintf("custom/%s/%s", types.ModuleName, types.QueryGetRewardFactors)
|
|
|
|
res, height, err := cliCtx.QueryWithData(route, bz)
|
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rest.PostProcessResponse(w, cliCtx, res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
func executeHardRewardsQuery(w http.ResponseWriter, cliCtx context.CLIContext, params types.QueryHardRewardsParams) {
|
|
|
|
bz, err := cliCtx.Codec.MarshalJSON(params)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
2020-04-24 15:20:34 +00:00
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
res, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetHardRewards), bz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
2020-04-24 15:20:34 +00:00
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
rest.PostProcessResponse(w, cliCtx, res)
|
|
|
|
}
|
2020-04-24 15:20:34 +00:00
|
|
|
|
2021-04-02 21:34:42 +00:00
|
|
|
func executeHardRewardsUnsyncedQuery(w http.ResponseWriter, cliCtx context.CLIContext, params types.QueryHardRewardsUnsyncedParams) {
|
|
|
|
bz, err := cliCtx.Codec.MarshalJSON(params)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
res, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetHardRewardsUnsynced), bz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
rest.PostProcessResponse(w, cliCtx, res)
|
|
|
|
}
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
func executeUSDXMintingRewardsQuery(w http.ResponseWriter, cliCtx context.CLIContext, params types.QueryUSDXMintingRewardsParams) {
|
|
|
|
bz, err := cliCtx.Codec.MarshalJSON(params)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
res, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetUSDXMintingRewards), bz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
rest.PostProcessResponse(w, cliCtx, res)
|
|
|
|
}
|
|
|
|
|
2021-04-02 21:34:42 +00:00
|
|
|
func executeUSDXMintingRewardsUnsyncedQuery(w http.ResponseWriter, cliCtx context.CLIContext, params types.QueryUSDXMintingRewardsUnsyncedParams) {
|
|
|
|
bz, err := cliCtx.Codec.MarshalJSON(params)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
res, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetUSDXMintingRewardsUnsynced), bz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
rest.PostProcessResponse(w, cliCtx, res)
|
|
|
|
}
|
|
|
|
|
2021-07-07 16:50:14 +00:00
|
|
|
func executeDelegatorRewardsQuery(w http.ResponseWriter, cliCtx context.CLIContext, params types.QueryDelegatorRewardsParams) {
|
|
|
|
bz, err := cliCtx.Codec.MarshalJSON(params)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
res, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetDelegatorRewards), bz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
rest.PostProcessResponse(w, cliCtx, res)
|
|
|
|
}
|
|
|
|
|
|
|
|
func executeDelegatorRewardsUnsyncedQuery(w http.ResponseWriter, cliCtx context.CLIContext, params types.QueryDelegatorRewardsUnsyncedParams) {
|
|
|
|
bz, err := cliCtx.Codec.MarshalJSON(params)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
res, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetDelegatorRewardsUnsynced), bz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
rest.PostProcessResponse(w, cliCtx, res)
|
|
|
|
}
|
|
|
|
|
|
|
|
func executeAllRewardQueries(w http.ResponseWriter, cliCtx context.CLIContext,
|
|
|
|
hardParams types.QueryHardRewardsParams, usdxMintingParams types.QueryUSDXMintingRewardsParams,
|
|
|
|
delegatorParams types.QueryDelegatorRewardsParams) {
|
2021-01-27 13:33:36 +00:00
|
|
|
hardBz, err := cliCtx.Codec.MarshalJSON(hardParams)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
2020-04-24 15:20:34 +00:00
|
|
|
}
|
2021-01-27 13:33:36 +00:00
|
|
|
|
|
|
|
hardRes, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetHardRewards), hardBz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
2021-02-08 14:14:25 +00:00
|
|
|
var hardClaims types.HardLiquidityProviderClaims
|
|
|
|
cliCtx.Codec.MustUnmarshalJSON(hardRes, &hardClaims)
|
2021-01-27 13:33:36 +00:00
|
|
|
|
|
|
|
usdxMintingBz, err := cliCtx.Codec.MarshalJSON(usdxMintingParams)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
usdxMintingRes, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetUSDXMintingRewards), usdxMintingBz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
2021-02-08 14:14:25 +00:00
|
|
|
var usdxMintingClaims types.USDXMintingClaims
|
|
|
|
cliCtx.Codec.MustUnmarshalJSON(usdxMintingRes, &usdxMintingClaims)
|
2021-01-27 13:33:36 +00:00
|
|
|
|
2021-07-07 16:50:14 +00:00
|
|
|
delegatorBz, err := cliCtx.Codec.MarshalJSON(delegatorParams)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
delegatorRes, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetDelegatorRewards), delegatorBz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var delegatorClaims types.DelegatorClaims
|
|
|
|
cliCtx.Codec.MustUnmarshalJSON(delegatorRes, &delegatorClaims)
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
2021-02-08 14:14:25 +00:00
|
|
|
|
|
|
|
type rewardResult struct {
|
|
|
|
HardClaims types.HardLiquidityProviderClaims `json:"hard_claims" yaml:"hard_claims"`
|
|
|
|
UsdxMintingClaims types.USDXMintingClaims `json:"usdx_minting_claims" yaml:"usdx_minting_claims"`
|
2021-07-07 16:50:14 +00:00
|
|
|
DelegatorClaims types.DelegatorClaims `json:"delegator_claims" yaml:"delegator_claims"`
|
2021-02-08 14:14:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
res := rewardResult{
|
|
|
|
HardClaims: hardClaims,
|
|
|
|
UsdxMintingClaims: usdxMintingClaims,
|
2021-07-07 16:50:14 +00:00
|
|
|
DelegatorClaims: delegatorClaims,
|
2021-02-08 14:14:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
resBz, err := cliCtx.Codec.MarshalJSON(res)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal result: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rest.PostProcessResponse(w, cliCtx, resBz)
|
2020-04-24 15:20:34 +00:00
|
|
|
}
|
2021-04-02 21:34:42 +00:00
|
|
|
|
2021-07-07 16:50:14 +00:00
|
|
|
func executeAllUnsyncedRewardQueries(w http.ResponseWriter, cliCtx context.CLIContext,
|
|
|
|
hardParams types.QueryHardRewardsUnsyncedParams, usdxMintingParams types.QueryUSDXMintingRewardsUnsyncedParams,
|
|
|
|
delegatorParams types.QueryDelegatorRewardsUnsyncedParams) {
|
2021-04-02 21:34:42 +00:00
|
|
|
hardBz, err := cliCtx.Codec.MarshalJSON(hardParams)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
hardRes, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetHardRewardsUnsynced), hardBz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var hardClaims types.HardLiquidityProviderClaims
|
|
|
|
cliCtx.Codec.MustUnmarshalJSON(hardRes, &hardClaims)
|
|
|
|
|
|
|
|
usdxMintingBz, err := cliCtx.Codec.MarshalJSON(usdxMintingParams)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
usdxMintingRes, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetUSDXMintingRewardsUnsynced), usdxMintingBz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var usdxMintingClaims types.USDXMintingClaims
|
|
|
|
cliCtx.Codec.MustUnmarshalJSON(usdxMintingRes, &usdxMintingClaims)
|
|
|
|
|
2021-07-07 16:50:14 +00:00
|
|
|
delegatorBz, err := cliCtx.Codec.MarshalJSON(delegatorParams)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
delegatorRes, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetDelegatorRewardsUnsynced), delegatorBz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var delegatorClaims types.DelegatorClaims
|
|
|
|
cliCtx.Codec.MustUnmarshalJSON(delegatorRes, &delegatorClaims)
|
|
|
|
|
2021-04-02 21:34:42 +00:00
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
|
|
|
|
type rewardResult struct {
|
|
|
|
HardClaims types.HardLiquidityProviderClaims `json:"hard_claims" yaml:"hard_claims"`
|
|
|
|
UsdxMintingClaims types.USDXMintingClaims `json:"usdx_minting_claims" yaml:"usdx_minting_claims"`
|
2021-07-07 16:50:14 +00:00
|
|
|
DelegatorClaims types.DelegatorClaims `json:"delegator_claims" yaml:"delegator_claims"`
|
2021-04-02 21:34:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
res := rewardResult{
|
|
|
|
HardClaims: hardClaims,
|
|
|
|
UsdxMintingClaims: usdxMintingClaims,
|
2021-07-07 16:50:14 +00:00
|
|
|
DelegatorClaims: delegatorClaims,
|
2021-04-02 21:34:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
resBz, err := cliCtx.Codec.MarshalJSON(res)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal result: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rest.PostProcessResponse(w, cliCtx, resBz)
|
|
|
|
}
|