mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
4b8e224f6a
* Revert "Add incentive migrations for earn rewards (#1406)" This reverts commit937e5f339f
. * Revert "Use different accumulator for earn (#1395)" This reverts commitcf009647e6
. * Revert "Add base earn incentive accumulator (#1393)" This reverts commit44a90a8ef9
. * Revert "Add generic incentive `AccumulateRewards` method (#1392)" This reverts commitdce631d3de
. * Revert "Add GetSynchronizedClaim and swap adapter (#1386)" This reverts commitf52a581ea9
. * Revert "Add Initialize/Synchronize Claim methods (#1383)" This reverts commitc2061f626e
. * Revert "Add source adapter interface definition (#1377)" This reverts commit2abb2ce606
. * Revert "Add incentive RewardIndexes types and state methods (#1381)" This reverts commit4a3002b09c
. * Revert "Add AccrualTime type and state methods (#1379)" This reverts commitdf1c2ffc34
. * Revert "Add incentive claim state methods (#1375)" This reverts commit90735e29ed
. * Revert "Add generic Claim type (#1371)" This reverts commit45fc1a7643
. * Regerate protos and minor revert fixes
90 lines
2.7 KiB
Protocol Buffer
90 lines
2.7 KiB
Protocol Buffer
syntax = "proto3";
|
|
package kava.incentive.v1beta1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "google/protobuf/timestamp.proto";
|
|
import "kava/incentive/v1beta1/claims.proto";
|
|
import "kava/incentive/v1beta1/params.proto";
|
|
|
|
// import "cosmos/base/v1beta1/coin.proto";
|
|
// import "cosmos/base/v1beta1/coins.proto";
|
|
|
|
option go_package = "github.com/kava-labs/kava/x/incentive/types";
|
|
option (gogoproto.goproto_getters_all) = false;
|
|
|
|
// AccumulationTime stores the previous reward distribution time and its corresponding collateral type
|
|
message AccumulationTime {
|
|
string collateral_type = 1;
|
|
|
|
google.protobuf.Timestamp previous_accumulation_time = 2 [
|
|
(gogoproto.nullable) = false,
|
|
(gogoproto.stdtime) = true
|
|
];
|
|
}
|
|
|
|
// GenesisRewardState groups together the global state for a particular reward so it can be exported in genesis.
|
|
message GenesisRewardState {
|
|
repeated AccumulationTime accumulation_times = 1 [
|
|
(gogoproto.castrepeated) = "AccumulationTimes",
|
|
(gogoproto.nullable) = false
|
|
];
|
|
|
|
repeated MultiRewardIndex multi_reward_indexes = 2 [
|
|
(gogoproto.castrepeated) = "MultiRewardIndexes",
|
|
(gogoproto.nullable) = false
|
|
];
|
|
}
|
|
|
|
// GenesisState is the state that must be provided at genesis.
|
|
message GenesisState {
|
|
Params params = 1 [(gogoproto.nullable) = false];
|
|
|
|
GenesisRewardState usdx_reward_state = 2 [
|
|
(gogoproto.customname) = "USDXRewardState",
|
|
(gogoproto.nullable) = false
|
|
];
|
|
|
|
GenesisRewardState hard_supply_reward_state = 3 [(gogoproto.nullable) = false];
|
|
|
|
GenesisRewardState hard_borrow_reward_state = 4 [(gogoproto.nullable) = false];
|
|
|
|
GenesisRewardState delegator_reward_state = 5 [(gogoproto.nullable) = false];
|
|
|
|
GenesisRewardState swap_reward_state = 6 [(gogoproto.nullable) = false];
|
|
|
|
repeated USDXMintingClaim usdx_minting_claims = 7 [
|
|
(gogoproto.customname) = "USDXMintingClaims",
|
|
(gogoproto.castrepeated) = "USDXMintingClaims",
|
|
(gogoproto.nullable) = false
|
|
];
|
|
|
|
repeated HardLiquidityProviderClaim hard_liquidity_provider_claims = 8 [
|
|
(gogoproto.castrepeated) = "HardLiquidityProviderClaims",
|
|
(gogoproto.nullable) = false
|
|
];
|
|
|
|
repeated DelegatorClaim delegator_claims = 9 [
|
|
(gogoproto.castrepeated) = "DelegatorClaims",
|
|
(gogoproto.nullable) = false
|
|
];
|
|
|
|
repeated SwapClaim swap_claims = 10 [
|
|
(gogoproto.castrepeated) = "SwapClaims",
|
|
(gogoproto.nullable) = false
|
|
];
|
|
|
|
GenesisRewardState savings_reward_state = 11 [(gogoproto.nullable) = false];
|
|
|
|
repeated SavingsClaim savings_claims = 12 [
|
|
(gogoproto.castrepeated) = "SavingsClaims",
|
|
(gogoproto.nullable) = false
|
|
];
|
|
|
|
GenesisRewardState earn_reward_state = 13 [(gogoproto.nullable) = false];
|
|
|
|
repeated EarnClaim earn_claims = 14 [
|
|
(gogoproto.castrepeated) = "EarnClaims",
|
|
(gogoproto.nullable) = false
|
|
];
|
|
}
|