mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
5af50e1a2d
* add owner to repay msg * pass owner and sender to repay function * make owner arg an optional flag * make owner optional for REST
60 lines
1.9 KiB
Go
60 lines
1.9 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"
|
|
)
|
|
|
|
// REST variable names
|
|
// nolint
|
|
const (
|
|
RestOwner = "owner"
|
|
RestDenom = "denom"
|
|
RestName = "name"
|
|
)
|
|
|
|
// RegisterRoutes registers hard-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"`
|
|
Amount sdk.Coins `json:"amount" yaml:"amount"`
|
|
}
|
|
|
|
// 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"`
|
|
Amount sdk.Coins `json:"amount" yaml:"amount"`
|
|
}
|
|
|
|
// PostBorrowReq defines the properties of a borrow request's body
|
|
type PostBorrowReq struct {
|
|
BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"`
|
|
From sdk.AccAddress `json:"from" yaml:"from"`
|
|
Amount sdk.Coins `json:"amount" yaml:"amount"`
|
|
}
|
|
|
|
// PostRepayReq defines the properties of a repay request's body
|
|
type PostRepayReq struct {
|
|
BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"`
|
|
From sdk.AccAddress `json:"from" yaml:"from"`
|
|
Owner sdk.AccAddress `json:"owner" yaml:"owner"`
|
|
Amount sdk.Coins `json:"amount" yaml:"amount"`
|
|
}
|
|
|
|
// PostLiquidateReq defines the properties of a liquidate request's body
|
|
type PostLiquidateReq struct {
|
|
BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"`
|
|
From sdk.AccAddress `json:"from" yaml:"from"`
|
|
Borrower sdk.AccAddress `json:"borrower" yaml:"borrower"`
|
|
}
|