mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
38 lines
929 B
Go
38 lines
929 B
Go
|
package rest
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gorilla/mux"
|
||
|
|
||
|
"github.com/cosmos/cosmos-sdk/client/context"
|
||
|
"github.com/cosmos/cosmos-sdk/types/rest"
|
||
|
|
||
|
"github.com/kava-labs/kava/x/kavadist/types"
|
||
|
)
|
||
|
|
||
|
func registerQueryRoutes(cliCtx context.CLIContext, r *mux.Router) {
|
||
|
r.HandleFunc(fmt.Sprintf("/%s/parameters", types.ModuleName), queryParamsHandlerFn(cliCtx)).Methods("GET")
|
||
|
}
|
||
|
|
||
|
func queryParamsHandlerFn(cliCtx context.CLIContext) http.HandlerFunc {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
cliCtx, ok := rest.ParseQueryHeightOrReturnBadRequest(w, cliCtx, r)
|
||
|
if !ok {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
route := fmt.Sprintf("custom/%s/parameters", types.QuerierRoute)
|
||
|
|
||
|
res, height, err := cliCtx.QueryWithData(route, nil)
|
||
|
if err != nil {
|
||
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
||
|
return
|
||
|
}
|
||
|
|
||
|
cliCtx = cliCtx.WithHeight(height)
|
||
|
rest.PostProcessResponse(w, cliCtx, res)
|
||
|
}
|
||
|
}
|