-
Notifications
You must be signed in to change notification settings - Fork 5
/
genesis.go
59 lines (49 loc) · 1.42 KB
/
genesis.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package incentives
import (
sdk "github.com/cosmos/cosmos-sdk/types"
authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"
"github.com/bitdao-io/bitos/x/incentives/keeper"
"github.com/bitdao-io/bitos/x/incentives/types"
)
// InitGenesis import module genesis
func InitGenesis(
ctx sdk.Context,
k keeper.Keeper,
accountKeeper authkeeper.AccountKeeper,
data types.GenesisState,
) {
k.SetParams(ctx, data.Params)
// Ensure incentives module account is set on genesis
if acc := accountKeeper.GetModuleAccount(ctx, types.ModuleName); acc == nil {
panic("the incentives module account has not been set")
}
allocationMeters := make(map[string]sdk.Dec)
for _, incentive := range data.Incentives {
// Set Incentives
k.SetIncentive(ctx, incentive)
// Build allocation meter map
for _, al := range incentive.Allocations {
allocationMeters[al.Denom] = allocationMeters[al.Denom].Add(al.Amount)
}
}
// Set allocation meters
for denom, amount := range allocationMeters {
am := sdk.DecCoin{
Denom: denom,
Amount: amount,
}
k.SetAllocationMeter(ctx, am)
}
// Set gas meters
for _, gasMeter := range data.GasMeters {
k.SetGasMeter(ctx, gasMeter)
}
}
// ExportGenesis export module status
func ExportGenesis(ctx sdk.Context, k keeper.Keeper) *types.GenesisState {
return &types.GenesisState{
Params: k.GetParams(ctx),
Incentives: k.GetAllIncentives(ctx),
GasMeters: k.GetIncentivesGasMeters(ctx),
}
}