@@ -91,15 +91,15 @@ import (
9191 "github.com/lcnem/jpyx/x/auction"
9292 auctionkeeper "github.com/lcnem/jpyx/x/auction/keeper"
9393 auctiontypes "github.com/lcnem/jpyx/x/auction/types"
94+ "github.com/lcnem/jpyx/x/botanydist"
95+ botanydistkeeper "github.com/lcnem/jpyx/x/botanydist/keeper"
96+ botanydisttypes "github.com/lcnem/jpyx/x/botanydist/types"
9497 "github.com/lcnem/jpyx/x/cdp"
9598 cdpkeeper "github.com/lcnem/jpyx/x/cdp/keeper"
9699 cdptypes "github.com/lcnem/jpyx/x/cdp/types"
97100 "github.com/lcnem/jpyx/x/incentive"
98101 incentivekeeper "github.com/lcnem/jpyx/x/incentive/keeper"
99102 incentivetypes "github.com/lcnem/jpyx/x/incentive/types"
100- "github.com/lcnem/jpyx/x/jsmndist"
101- jsmndistkeeper "github.com/lcnem/jpyx/x/jsmndist/keeper"
102- jsmndisttypes "github.com/lcnem/jpyx/x/jsmndist/types"
103103 "github.com/lcnem/jpyx/x/pricefeed"
104104 pricefeedkeeper "github.com/lcnem/jpyx/x/pricefeed/keeper"
105105 pricefeedtypes "github.com/lcnem/jpyx/x/pricefeed/types"
@@ -153,7 +153,7 @@ var (
153153 auction.AppModuleBasic {},
154154 cdp.AppModuleBasic {},
155155 pricefeed.AppModuleBasic {},
156- jsmndist .AppModuleBasic {},
156+ botanydist .AppModuleBasic {},
157157 incentive.AppModuleBasic {},
158158 )
159159
@@ -170,7 +170,7 @@ var (
170170 auctiontypes .ModuleName : nil ,
171171 cdptypes .ModuleName : {authtypes .Minter , authtypes .Burner },
172172 cdptypes .LiquidatorMacc : {authtypes .Minter , authtypes .Burner },
173- jsmndisttypes .ModuleName : {authtypes .Minter },
173+ botanydisttypes .ModuleName : {authtypes .Minter },
174174 }
175175
176176 // module accounts that are allowed to receive tokens
@@ -233,11 +233,11 @@ type App struct {
233233 ScopedTransferKeeper capabilitykeeper.ScopedKeeper
234234
235235 // this line is used by starport scaffolding # stargate/app/keeperDeclaration
236- auctionKeeper auctionkeeper.Keeper
237- cdpKeeper cdpkeeper.Keeper
238- incentiveKeeper incentivekeeper.Keeper
239- jsmndistKeeper jsmndistkeeper .Keeper
240- pricefeedKeeper pricefeedkeeper.Keeper
236+ auctionKeeper auctionkeeper.Keeper
237+ cdpKeeper cdpkeeper.Keeper
238+ incentiveKeeper incentivekeeper.Keeper
239+ botanydistKeeper botanydistkeeper .Keeper
240+ pricefeedKeeper pricefeedkeeper.Keeper
241241
242242 // the module manager
243243 mm * module.Manager
@@ -271,7 +271,7 @@ func NewApp(
271271 evidencetypes .StoreKey , liquiditytypes .StoreKey , ibctransfertypes .StoreKey , capabilitytypes .StoreKey ,
272272 // this line is used by starport scaffolding # stargate/app/storeKey
273273 auctiontypes .StoreKey , cdptypes .StoreKey , incentivetypes .StoreKey ,
274- jsmndisttypes .StoreKey , pricefeedtypes .StoreKey ,
274+ botanydisttypes .StoreKey , pricefeedtypes .StoreKey ,
275275 )
276276 tkeys := sdk .NewTransientStoreKeys (paramstypes .TStoreKey )
277277 memKeys := sdk .NewMemoryStoreKeys (capabilitytypes .MemStoreKey )
@@ -403,11 +403,11 @@ func NewApp(
403403 app .BankKeeper ,
404404 & cdpKeeper ,
405405 )
406- app .jsmndistKeeper = jsmndistkeeper .NewKeeper (
406+ app .botanydistKeeper = botanydistkeeper .NewKeeper (
407407 appCodec ,
408- keys [jsmndisttypes .StoreKey ],
409- keys [jsmndisttypes .MemStoreKey ],
410- app .GetSubspace (jsmndisttypes .ModuleName ),
408+ keys [botanydisttypes .StoreKey ],
409+ keys [botanydisttypes .MemStoreKey ],
410+ app .GetSubspace (botanydisttypes .ModuleName ),
411411 app .AccountKeeper ,
412412 app .BankKeeper ,
413413 )
@@ -453,7 +453,7 @@ func NewApp(
453453 auction .NewAppModule (appCodec , app .auctionKeeper , app .AccountKeeper , app .BankKeeper ),
454454 cdp .NewAppModule (appCodec , app .cdpKeeper , app .AccountKeeper , app .BankKeeper , app .pricefeedKeeper ),
455455 incentive .NewAppModule (appCodec , app .incentiveKeeper , app .AccountKeeper , app .BankKeeper , app .cdpKeeper ),
456- jsmndist .NewAppModule (appCodec , app .jsmndistKeeper , app .AccountKeeper , app .BankKeeper ),
456+ botanydist .NewAppModule (appCodec , app .botanydistKeeper , app .AccountKeeper , app .BankKeeper ),
457457 pricefeed .NewAppModule (appCodec , app .pricefeedKeeper , app .AccountKeeper ),
458458 )
459459
@@ -464,7 +464,7 @@ func NewApp(
464464 app .mm .SetOrderBeginBlockers (
465465 upgradetypes .ModuleName , capabilitytypes .ModuleName , minttypes .ModuleName , distrtypes .ModuleName , slashingtypes .ModuleName ,
466466 evidencetypes .ModuleName , stakingtypes .ModuleName , liquiditytypes .ModuleName , ibchost .ModuleName ,
467- jsmndisttypes .ModuleName , auctiontypes .ModuleName , cdptypes .ModuleName ,
467+ botanydisttypes .ModuleName , auctiontypes .ModuleName , cdptypes .ModuleName ,
468468 incentivetypes .ModuleName ,
469469 )
470470
@@ -498,7 +498,7 @@ func NewApp(
498498 pricefeedtypes .ModuleName ,
499499 cdptypes .ModuleName ,
500500 incentivetypes .ModuleName ,
501- jsmndisttypes .ModuleName ,
501+ botanydisttypes .ModuleName ,
502502 )
503503
504504 app .mm .RegisterInvariants (& app .CrisisKeeper )
@@ -527,7 +527,7 @@ func NewApp(
527527 // auction.NewAppModule(appCodec, app.auctionKeeper, app.AccountKeeper, app.BankKeeper),
528528 // cdp.NewAppModule(appCodec, app.cdpKeeper, app.AccountKeeper, app.BankKeeper, app.pricefeedKeeper),
529529 // incentive.NewAppModule(appCodec, app.incentiveKeeper, app.AccountKeeper, app.BankKeeper, app.cdpKeeper),
530- // jsmndist .NewAppModule(appCodec, app.jsmndistKeeper , app.AccountKeeper, app.BankKeeper),
530+ // botanydist .NewAppModule(appCodec, app.botanydistKeeper , app.AccountKeeper, app.BankKeeper),
531531 // pricefeed.NewAppModule(appCodec, app.pricefeedKeeper, app.AccountKeeper),
532532 )
533533
@@ -722,7 +722,7 @@ func initParamsKeeper(appCodec codec.BinaryMarshaler, legacyAmino *codec.LegacyA
722722 paramsKeeper .Subspace (auctiontypes .ModuleName )
723723 paramsKeeper .Subspace (cdptypes .ModuleName )
724724 paramsKeeper .Subspace (incentivetypes .ModuleName )
725- paramsKeeper .Subspace (jsmndisttypes .ModuleName )
725+ paramsKeeper .Subspace (botanydisttypes .ModuleName )
726726 paramsKeeper .Subspace (pricefeedtypes .ModuleName )
727727
728728 return paramsKeeper
0 commit comments