mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
82e2f26e14
* Add query methods * Add TotalDeposited rpc query * All accounts and all denoms query wip * Add query deposits * Remove IsDenomSupported strategy method This is not necessary and is already set in params allowed vaults * Add Vaults, TotalDeposited queries * Deposits query tests and fixes * proto lints * Add earn swagger docs * Add cli query cmds * Update init-new-chain.sh with usdx strategy and funds * Add denom url query path for vaults * Return a list of coins for each depositor instead of multiple deposit entries
21 lines
658 B
Protocol Buffer
21 lines
658 B
Protocol Buffer
syntax = "proto3";
|
|
package kava.earn.v1beta1;
|
|
|
|
option go_package = "github.com/kava-labs/kava/x/earn/types";
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
// 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;
|
|
}
|