mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 09:47:28 +00:00 
			
		
		
		
	* feat: add community multi-spend proposal type * feat: add handler for community multi-spend proposals * chore: register new community multi-spend proposal * feat: define client for community multi-spend proposal * fix typos in example cli json * fix: register now proposal type with module codec * fix: register community multi-spend proposal with gov router, not committee * fix: define kavadist keeper before referencing it * nit: include deposit in example proposal * nit: update comment * nit: fix error codes * nit: update comments
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package rest
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	"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/cosmos/cosmos-sdk/x/auth/client/utils"
 | 
						|
	"github.com/cosmos/cosmos-sdk/x/gov"
 | 
						|
	govrest "github.com/cosmos/cosmos-sdk/x/gov/client/rest"
 | 
						|
 | 
						|
	"github.com/kava-labs/kava/x/kavadist/types"
 | 
						|
)
 | 
						|
 | 
						|
// RegisterRoutes registers kavadist-related REST handlers to a router
 | 
						|
func RegisterRoutes(cliCtx context.CLIContext, r *mux.Router) {
 | 
						|
	registerQueryRoutes(cliCtx, r)
 | 
						|
}
 | 
						|
 | 
						|
// ProposalRESTHandler returns a ProposalRESTHandler that exposes the community pool multi-spend REST handler with a given sub-route.
 | 
						|
func ProposalRESTHandler(cliCtx context.CLIContext) govrest.ProposalRESTHandler {
 | 
						|
	return govrest.ProposalRESTHandler{
 | 
						|
		SubRoute: types.ProposalTypeCommunityPoolMultiSpend,
 | 
						|
		Handler:  postProposalHandlerFn(cliCtx),
 | 
						|
	}
 | 
						|
}
 | 
						|
func postProposalHandlerFn(cliCtx context.CLIContext) http.HandlerFunc {
 | 
						|
	return func(w http.ResponseWriter, r *http.Request) {
 | 
						|
		var req CommunityPoolMultiSpendProposalReq
 | 
						|
		if !rest.ReadRESTReq(w, r, cliCtx.Codec, &req) {
 | 
						|
			return
 | 
						|
		}
 | 
						|
		req.BaseReq = req.BaseReq.Sanitize()
 | 
						|
		if !req.BaseReq.ValidateBasic(w) {
 | 
						|
			return
 | 
						|
		}
 | 
						|
		content := types.NewCommunityPoolMultiSpendProposal(req.Title, req.Description, req.RecipientList)
 | 
						|
		msg := gov.NewMsgSubmitProposal(content, req.Deposit, req.Proposer)
 | 
						|
		if err := msg.ValidateBasic(); err != nil {
 | 
						|
			rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
 | 
						|
			return
 | 
						|
		}
 | 
						|
		utils.WriteGenerateStdTxResponse(w, cliCtx, req.BaseReq, []sdk.Msg{msg})
 | 
						|
	}
 | 
						|
}
 |