package protocolpool import ( modulev1 "cosmossdk.io/api/cosmos/protocolpool/module/v1" "cosmossdk.io/core/appmodule" "cosmossdk.io/core/store" "cosmossdk.io/depinject" "cosmossdk.io/depinject/appconfig" "github.com/cosmos/cosmos-sdk/codec" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/cosmos/cosmos-sdk/x/protocolpool/keeper" "github.com/cosmos/cosmos-sdk/x/protocolpool/types" ) var _ depinject.OnePerModuleType = AppModule{} // IsOnePerModuleType implements the depinject.OnePerModuleType interface. func (am AppModule) IsOnePerModuleType() {} func init() { appconfig.RegisterModule( &modulev1.Module{}, appconfig.Provide(ProvideModule), ) } type ModuleInputs struct { depinject.In Config *modulev1.Module Codec codec.Codec StoreService store.KVStoreService AccountKeeper types.AccountKeeper BankKeeper types.BankKeeper } type ModuleOutputs struct { depinject.Out Keeper keeper.Keeper Module appmodule.AppModule } func ProvideModule(in ModuleInputs) ModuleOutputs { // default to governance authority if not provided authority := authtypes.NewModuleAddress(govtypes.ModuleName) if in.Config.Authority != "" { authority = authtypes.NewModuleAddressOrBech32Address(in.Config.Authority) } authorityAddr, err := in.AccountKeeper.AddressCodec().BytesToString(authority) if err != nil { panic(err) } k := keeper.NewKeeper(in.Codec, in.StoreService, in.AccountKeeper, in.BankKeeper, authorityAddr) m := NewAppModule(k, in.AccountKeeper, in.BankKeeper) return ModuleOutputs{ Keeper: k, Module: m, } }