2020-09-21 21:08:43 +00:00
|
|
|
package rest
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/types/rest"
|
|
|
|
)
|
|
|
|
|
|
|
|
// REST variable names
|
|
|
|
// nolint
|
|
|
|
const (
|
|
|
|
RestOwner = "owner"
|
|
|
|
RestDenom = "deposit-denom"
|
|
|
|
RestType = "deposit-type"
|
|
|
|
RestName = "name"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RegisterRoutes registers harvest-related REST handlers to a router
|
|
|
|
func RegisterRoutes(cliCtx context.CLIContext, r *mux.Router) {
|
|
|
|
registerQueryRoutes(cliCtx, r)
|
|
|
|
registerTxRoutes(cliCtx, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
// PostCreateDepositReq defines the properties of a deposit create request's body
|
|
|
|
type PostCreateDepositReq struct {
|
|
|
|
BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"`
|
|
|
|
From sdk.AccAddress `json:"from" yaml:"from"`
|
2020-12-18 16:05:21 +00:00
|
|
|
Amount sdk.Coins `json:"amount" yaml:"amount"`
|
2020-09-21 21:08:43 +00:00
|
|
|
DepositType string `json:"deposit_type" yaml:"deposit_type"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// PostCreateWithdrawReq defines the properties of a deposit withdraw request's body
|
|
|
|
type PostCreateWithdrawReq struct {
|
|
|
|
BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"`
|
|
|
|
From sdk.AccAddress `json:"from" yaml:"from"`
|
2020-12-18 16:05:21 +00:00
|
|
|
Amount sdk.Coins `json:"amount" yaml:"amount"`
|
2020-09-21 21:08:43 +00:00
|
|
|
DepositType string `json:"deposit_type" yaml:"deposit_type"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// PostClaimReq defines the properties of a claim reward request's body
|
|
|
|
type PostClaimReq struct {
|
|
|
|
BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"`
|
|
|
|
From sdk.AccAddress `json:"from" yaml:"from"`
|
|
|
|
Receiver sdk.AccAddress `json:"receiver" yaml:"receiver"`
|
|
|
|
DepositDenom string `json:"deposit_denom" yaml:"deposit_denom"`
|
|
|
|
DepositType string `json:"deposit_type" yaml:"deposit_type"`
|
|
|
|
Multiplier string `json:"multiplier" yaml:"multiplier"`
|
|
|
|
}
|