-
Notifications
You must be signed in to change notification settings - Fork 17
/
keeper.go
85 lines (74 loc) · 2.45 KB
/
keeper.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package keeper
import (
"fmt"
globalKeeper "github.com/KYVENetwork/chain/x/global/keeper"
teamKeeper "github.com/KYVENetwork/chain/x/team/keeper"
govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper"
bundlekeeper "github.com/KYVENetwork/chain/x/bundles/keeper"
delegationkeeper "github.com/KYVENetwork/chain/x/delegation/keeper"
poolkeeper "github.com/KYVENetwork/chain/x/pool/keeper"
stakerskeeper "github.com/KYVENetwork/chain/x/stakers/keeper"
authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
distrkeeper "github.com/cosmos/cosmos-sdk/x/distribution/keeper"
"github.com/tendermint/tendermint/libs/log"
"github.com/KYVENetwork/chain/x/query/types"
"github.com/cosmos/cosmos-sdk/codec"
storetypes "github.com/cosmos/cosmos-sdk/store/types"
sdk "github.com/cosmos/cosmos-sdk/types"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
)
type (
Keeper struct {
cdc codec.BinaryCodec
storeKey storetypes.StoreKey
memKey storetypes.StoreKey
paramstore paramtypes.Subspace
accountKeeper authkeeper.AccountKeeper
bankKeeper bankkeeper.Keeper
distrkeeper distrkeeper.Keeper
poolKeeper poolkeeper.Keeper
stakerKeeper stakerskeeper.Keeper
delegationKeeper delegationkeeper.Keeper
bundleKeeper bundlekeeper.Keeper
globalKeeper globalKeeper.Keeper
govKeeper govkeeper.Keeper
teamKeeper teamKeeper.Keeper
}
)
func NewKeeper(
cdc codec.BinaryCodec,
storeKey,
memKey storetypes.StoreKey,
ps paramtypes.Subspace,
accountKeeper authkeeper.AccountKeeper,
bankKeeper bankkeeper.Keeper,
distrkeeper distrkeeper.Keeper,
poolKeeper poolkeeper.Keeper,
stakerKeeper stakerskeeper.Keeper,
delegationKeeper delegationkeeper.Keeper,
bundleKeeper bundlekeeper.Keeper,
globalKeeper globalKeeper.Keeper,
govKeeper govkeeper.Keeper,
teamKeeper teamKeeper.Keeper,
) *Keeper {
return &Keeper{
cdc: cdc,
storeKey: storeKey,
memKey: memKey,
paramstore: ps,
accountKeeper: accountKeeper,
bankKeeper: bankKeeper,
distrkeeper: distrkeeper,
poolKeeper: poolKeeper,
stakerKeeper: stakerKeeper,
delegationKeeper: delegationKeeper,
bundleKeeper: bundleKeeper,
globalKeeper: globalKeeper,
govKeeper: govKeeper,
teamKeeper: teamKeeper,
}
}
func (k Keeper) Logger(ctx sdk.Context) log.Logger {
return ctx.Logger().With("module", fmt.Sprintf("x/%s", types.ModuleName))
}