diff --git a/app/app_config.go b/app/app_config.go index 93f6ea2..c141746 100644 --- a/app/app_config.go +++ b/app/app_config.go @@ -51,13 +51,6 @@ import ( ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" "google.golang.org/protobuf/types/known/durationpb" - // NOTE: The genutils module must occur after staking so that pools are - // properly initialized with tokens from genesis accounts. - // NOTE: The genutils module must also occur after auth so that it can access the params from auth. - // NOTE: Capability module must occur first so that it can initialize any capabilities - // so that other modules that want to create or claim capabilities afterwards in InitChain - // can do so safely. - claimmodulev1 "github.com/ignite/modules/api/modules/claim/module/v1" fundraisingmodulev1 "github.com/ignite/modules/api/modules/fundraising/module/v1" mintmodulev1 "github.com/ignite/modules/api/modules/mint/module/v1" @@ -70,6 +63,12 @@ import ( ) var ( + // NOTE: The genutils module must occur after staking so that pools are + // properly initialized with tokens from genesis accounts. + // NOTE: The genutils module must also occur after auth so that it can access the params from auth. + // NOTE: Capability module must occur first so that it can initialize any capabilities + // so that other modules that want to create or claim capabilities afterwards in InitChain + // can do so safely. genesisModuleOrder = []string{ // cosmos-sdk/ibc modules capabilitytypes.ModuleName,