2022-12-13 00:38:27 +00:00
|
|
|
package keeper
|
|
|
|
|
|
|
|
import (
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
|
|
|
|
"github.com/kava-labs/kava/x/community/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// HandleCommunityPoolLendDepositProposal is a handler for executing a passed community pool lend deposit proposal.
|
|
|
|
func HandleCommunityPoolLendDepositProposal(ctx sdk.Context, k Keeper, p *types.CommunityPoolLendDepositProposal) error {
|
2023-01-26 23:27:41 +00:00
|
|
|
// move funds from community pool to x/community so hard position is held by this module.
|
|
|
|
err := k.distrKeeper.DistributeFromFeePool(ctx, p.Amount, k.moduleAddress)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// deposit funds into hard
|
2022-12-13 00:38:27 +00:00
|
|
|
return k.hardKeeper.Deposit(ctx, k.moduleAddress, p.Amount)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HandleCommunityPoolLendWithdrawProposal is a handler for executing a passed community pool lend withdraw proposal.
|
|
|
|
func HandleCommunityPoolLendWithdrawProposal(ctx sdk.Context, k Keeper, p *types.CommunityPoolLendWithdrawProposal) error {
|
2023-01-26 23:27:41 +00:00
|
|
|
// hard allows attempting to withdraw more funds than there is a deposit for.
|
|
|
|
// this means the amount that gets withdrawn will not necessarily match the amount set in the proposal.
|
|
|
|
// to calculate how much is withdrawn, compare this module's balance before & after withdraw.
|
|
|
|
balanceBefore := k.bankKeeper.GetAllBalances(ctx, k.moduleAddress)
|
|
|
|
|
|
|
|
// withdraw funds from x/hard to this module account
|
|
|
|
err := k.hardKeeper.Withdraw(ctx, k.moduleAddress, p.Amount)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
balanceAfter := k.bankKeeper.GetAllBalances(ctx, k.moduleAddress)
|
2023-04-04 00:08:45 +00:00
|
|
|
totalWithdrawn := balanceAfter.Sub(balanceBefore...)
|
2023-01-26 23:27:41 +00:00
|
|
|
|
|
|
|
// send all withdrawn coins back to community pool
|
|
|
|
return k.distrKeeper.FundCommunityPool(ctx, totalWithdrawn, k.moduleAddress)
|
2022-12-13 00:38:27 +00:00
|
|
|
}
|
2023-04-20 21:13:16 +00:00
|
|
|
|
|
|
|
// HandleCommunityCDPRepayDebtProposal is a handler for executing a passed community pool cdp repay debt proposal.
|
|
|
|
func HandleCommunityCDPRepayDebtProposal(ctx sdk.Context, k Keeper, p *types.CommunityCDPRepayDebtProposal) error {
|
|
|
|
// make debt repayment
|
|
|
|
return k.cdpKeeper.RepayPrincipal(ctx, k.moduleAddress, p.CollateralType, p.Payment)
|
|
|
|
}
|