mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-27 16:55:21 +00:00
34a7172581
* refactor cli borrows query * rest api feature parity for borrows query * refactor deposits cli query * remove deposit/borrow query names from types * add named deposit/borrow queries back into types * rest api feature parity for deposits query * load synced deposit instead of synced balance * deposits query returns synced deposits * borrows query returns synced borrows * refactor querier types * update comment for accuracy * add deposit/borrow slice types * refactor 'borrowed' query * implement 'deposited' query types * implement 'deposited' query keeper function * implement 'deposited' query CLI * implement 'deposited' query rest endpoint * update naming conventions to 'total'
70 lines
2.3 KiB
Go
70 lines
2.3 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"
|
|
RestClaimType = "claim-type"
|
|
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"`
|
|
}
|
|
|
|
// 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"`
|
|
MultiplierName string `json:"multiplier_name" yaml:"multiplier_name"`
|
|
ClaimType string `json:"claim_type" yaml:"claim_type"`
|
|
}
|
|
|
|
// 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"`
|
|
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"`
|
|
}
|