mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-27 00:35:18 +00:00
4e6f6d1e9c
* spike: incentive/types * spike: incentive/types tests * spike: incentive/types/expected_keepers.go * spike: incentive/keeper * spike: incentive/keeper tests * spike: incentive/sims and incentive/sims tests * spike: incentive/module * spike: incentive/module tests * spike: hard/types * spike: hard/types hooks * spike: hard/types * spike: hard/keeper basics * spike: hard/keeper hooks * integrate hard/keeper/borrow.go * integrate hard/keeper/deposit.go * integrate hard/keeper/liquidation.go * integrate hard/keeper/withdraw.go * integrate hard/keeper/repay.go * spike: hard/sims * spike: hard/sims tests * spike: hard/client * spike: hard/module * integrate app.go * spike: x/hard/keeper compile tests * incentive/keeper test clean up * validate usdx incentive types in genesis * refactoring & fix deposit test * fix liquidaton tests * fix incentive tests for hard supply rewards * fix hard genesis tests * update incentive genesis state and params * update cdp rewards accumulation * update app init order and begin blocker order Co-authored-by: karzak <kjydavis3@gmail.com>
63 lines
1.9 KiB
Go
63 lines
1.9 KiB
Go
package hard
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/kava-labs/kava/x/hard/types"
|
|
)
|
|
|
|
// InitGenesis initializes the store state from a genesis state.
|
|
func InitGenesis(ctx sdk.Context, k Keeper, supplyKeeper types.SupplyKeeper, gs GenesisState) {
|
|
if err := gs.Validate(); err != nil {
|
|
panic(fmt.Sprintf("failed to validate %s genesis state: %s", ModuleName, err))
|
|
}
|
|
|
|
k.SetParams(ctx, gs.Params)
|
|
|
|
// only set the previous block time if it's different than default
|
|
if !gs.PreviousBlockTime.Equal(DefaultPreviousBlockTime) {
|
|
k.SetPreviousBlockTime(ctx, gs.PreviousBlockTime)
|
|
}
|
|
|
|
for _, mm := range gs.Params.MoneyMarkets {
|
|
k.SetMoneyMarket(ctx, mm.Denom, mm)
|
|
}
|
|
|
|
// check if the module account exists
|
|
LPModuleAcc := supplyKeeper.GetModuleAccount(ctx, LPAccount)
|
|
if LPModuleAcc == nil {
|
|
panic(fmt.Sprintf("%s module account has not been set", LPAccount))
|
|
}
|
|
|
|
// check if the module account exists
|
|
DelegatorModuleAcc := supplyKeeper.GetModuleAccount(ctx, DelegatorAccount)
|
|
if DelegatorModuleAcc == nil {
|
|
panic(fmt.Sprintf("%s module account has not been set", DelegatorAccount))
|
|
}
|
|
|
|
// check if the module account exists
|
|
DepositModuleAccount := supplyKeeper.GetModuleAccount(ctx, ModuleAccountName)
|
|
if DepositModuleAccount == nil {
|
|
panic(fmt.Sprintf("%s module account has not been set", DepositModuleAccount))
|
|
}
|
|
|
|
// check if the module account exists
|
|
LiquidatorModuleAcc := supplyKeeper.GetModuleAccount(ctx, LiquidatorAccount)
|
|
if LiquidatorModuleAcc == nil {
|
|
panic(fmt.Sprintf("%s module account has not been set", LiquidatorAccount))
|
|
}
|
|
|
|
}
|
|
|
|
// ExportGenesis export genesis state for hard module
|
|
func ExportGenesis(ctx sdk.Context, k Keeper) GenesisState {
|
|
params := k.GetParams(ctx)
|
|
previousBlockTime, found := k.GetPreviousBlockTime(ctx)
|
|
if !found {
|
|
previousBlockTime = DefaultPreviousBlockTime
|
|
}
|
|
return NewGenesisState(params, previousBlockTime)
|
|
}
|