mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-13 03:25:20 +00:00
63c8421a81
* move multipliers to their own file * add multipliers per denom to MsgClaimHardReward * claim with multipliers per denom for hard claims * remove unused error * add multipliers per denom to params connect to to hard claiming * temporary fix migration * update usdx claiming for new multiplier params * claim with multipliers per denom for delegator * claim with multipliers per denom for swap rewards * tidy up multiplier name validation * rename new multipliers field in params * remove old multpliers from params * clear up various TODOs * add tags to new structs * remove dead code
39 lines
1.2 KiB
Go
39 lines
1.2 KiB
Go
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"
|
|
|
|
"github.com/kava-labs/kava/x/incentive/types"
|
|
)
|
|
|
|
// REST variable names
|
|
// nolint
|
|
const (
|
|
RestDenom = "denom"
|
|
)
|
|
|
|
// RegisterRoutes registers incentive-related REST handlers to a router
|
|
func RegisterRoutes(cliCtx context.CLIContext, r *mux.Router) {
|
|
registerQueryRoutes(cliCtx, r)
|
|
registerTxRoutes(cliCtx, r)
|
|
}
|
|
|
|
// PostClaimReq defines the properties of claim transaction's request body.
|
|
type PostClaimReq struct {
|
|
BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"`
|
|
Sender sdk.AccAddress `json:"sender" yaml:"sender"`
|
|
DenomsToClaim types.Selections `json:"denoms_to_claim" yaml:"denoms_to_claim"`
|
|
}
|
|
|
|
// PostClaimReq defines the properties of claim transaction's request body.
|
|
type PostClaimVVestingReq struct {
|
|
BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"`
|
|
Sender sdk.AccAddress `json:"sender" yaml:"sender"`
|
|
Receiver sdk.AccAddress `json:"receiver" yaml:"receiver"`
|
|
DenomsToClaim types.Selections `json:"denoms_to_claim" yaml:"denoms_to_claim"`
|
|
}
|