2022-07-20 23:14:43 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package kava.earn.v1beta1;
|
|
|
|
|
|
|
|
option go_package = "github.com/kava-labs/kava/x/earn/types";
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
|
2022-07-28 16:50:59 +00:00
|
|
|
// StrategyType is the type of strategy that a vault uses to optimize yields.
|
2022-07-20 23:14:43 +00:00
|
|
|
enum StrategyType {
|
|
|
|
option (gogoproto.goproto_enum_prefix) = false;
|
|
|
|
|
2022-07-28 16:50:59 +00:00
|
|
|
// STRATEGY_TYPE_UNSPECIFIED represents an unspecified or invalid strategy type.
|
|
|
|
STRATEGY_TYPE_UNSPECIFIED = 0;
|
|
|
|
// STRATEGY_TYPE_HARD represents the strategy that deposits assets in the Hard
|
|
|
|
// module.
|
|
|
|
STRATEGY_TYPE_HARD = 1;
|
|
|
|
// STRATEGY_TYPE_SAVINGS represents the strategy that deposits assets in the
|
|
|
|
// Savings module.
|
2022-07-28 16:39:57 +00:00
|
|
|
STRATEGY_TYPE_SAVINGS = 2;
|
2022-07-20 23:14:43 +00:00
|
|
|
}
|