mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
31eae1c6d7
* Initial proposal types * Add withdraw cdp proposal handler * Add codec registration for proposal type * Update CommunityCDPWithdrawCollateralProposal name * Rename CommunityCDPWithdrawCollateralProposal * Add changelog entry * Add proposal registration, unit tests * Register CommunityCDPWithdrawCollateralProposal proposal type codec
30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
package community
|
|
|
|
import (
|
|
errorsmod "cosmossdk.io/errors"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
|
govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
|
|
|
|
"github.com/kava-labs/kava/x/community/keeper"
|
|
"github.com/kava-labs/kava/x/community/types"
|
|
)
|
|
|
|
// NewCommunityPoolProposalHandler handles x/community proposals.
|
|
func NewCommunityPoolProposalHandler(k keeper.Keeper) govv1beta1.Handler {
|
|
return func(ctx sdk.Context, content govv1beta1.Content) error {
|
|
switch c := content.(type) {
|
|
case *types.CommunityCDPRepayDebtProposal:
|
|
return keeper.HandleCommunityCDPRepayDebtProposal(ctx, k, c)
|
|
case *types.CommunityCDPWithdrawCollateralProposal:
|
|
return keeper.HandleCommunityCDPWithdrawCollateralProposal(ctx, k, c)
|
|
case *types.CommunityPoolLendDepositProposal:
|
|
return keeper.HandleCommunityPoolLendDepositProposal(ctx, k, c)
|
|
case *types.CommunityPoolLendWithdrawProposal:
|
|
return keeper.HandleCommunityPoolLendWithdrawProposal(ctx, k, c)
|
|
default:
|
|
return errorsmod.Wrapf(sdkerrors.ErrUnknownRequest, "unrecognized community proposal content type: %T", c)
|
|
}
|
|
}
|
|
}
|