2022-12-09 23:07:49 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package kava.community.v1beta1;
|
|
|
|
|
|
|
|
import "cosmos/base/v1beta1/coin.proto";
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
|
|
|
|
option go_package = "github.com/kava-labs/kava/x/community/types";
|
|
|
|
|
|
|
|
// CommunityPoolLendDepositProposal deposits from the community pool into lend
|
|
|
|
message CommunityPoolLendDepositProposal {
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
string title = 1;
|
|
|
|
string description = 2;
|
|
|
|
repeated cosmos.base.v1beta1.Coin amount = 3 [
|
|
|
|
(gogoproto.nullable) = false,
|
|
|
|
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
// CommunityPoolLendWithdrawProposal withdraws a lend position back to the community pool
|
|
|
|
message CommunityPoolLendWithdrawProposal {
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
string title = 1;
|
|
|
|
string description = 2;
|
|
|
|
repeated cosmos.base.v1beta1.Coin amount = 3 [
|
|
|
|
(gogoproto.nullable) = false,
|
|
|
|
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"
|
|
|
|
];
|
|
|
|
}
|
2023-04-20 21:13:16 +00:00
|
|
|
|
|
|
|
// CommunityCDPRepayDebtProposal repays a cdp debt position owned by the community module
|
|
|
|
// This proposal exists primarily to allow committees to repay community module cdp debts.
|
|
|
|
message CommunityCDPRepayDebtProposal {
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
string title = 1;
|
|
|
|
string description = 2;
|
|
|
|
string collateral_type = 3;
|
|
|
|
cosmos.base.v1beta1.Coin payment = 4 [(gogoproto.nullable) = false];
|
|
|
|
}
|
2023-04-20 23:08:53 +00:00
|
|
|
|
|
|
|
// CommunityCDPWithdrawCollateralProposal withdraws cdp collateral owned by the community module
|
|
|
|
// This proposal exists primarily to allow committees to withdraw community module cdp collateral.
|
|
|
|
message CommunityCDPWithdrawCollateralProposal {
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
string title = 1;
|
|
|
|
string description = 2;
|
|
|
|
string collateral_type = 3;
|
|
|
|
cosmos.base.v1beta1.Coin collateral = 4 [(gogoproto.nullable) = false];
|
|
|
|
}
|