mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
21 lines
659 B
Protocol Buffer
21 lines
659 B
Protocol Buffer
syntax = "proto3";
|
|
package kava.earn.v1beta1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
option go_package = "github.com/0glabs/0g-chain/x/earn/types";
|
|
|
|
// StrategyType is the type of strategy that a vault uses to optimize yields.
|
|
enum StrategyType {
|
|
option (gogoproto.goproto_enum_prefix) = false;
|
|
|
|
// 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.
|
|
STRATEGY_TYPE_SAVINGS = 2;
|
|
}
|