# Packages
No description provided by the author
# Functions
CoreAppModuleAdaptor wraps the core API module as an AppModule that this version of the SDK can use.
DefaultMigrationsOrder returns a default migrations order: ascending alphabetical by module name, except x/auth which will run last, see: https://github.com/T-ragon/cosmos-sdk/v3/issues/10591.
NewConfigurator returns a new Configurator instance.
NewManager creates a new Manager object.
NewManagerFromMap creates a new Manager object from a map of module names to module implementations.
NewSimulationManager creates a new SimulationManager object
CONTRACT: All the modules provided must be also registered on the module Manager.
NewSimulationManagerFromAppModules creates a new SimulationManager object.
# Structs
Manager defines a module manager that provides the high level utility for managing and executing operations for a group of modules.
SimulationManager defines a simulation manager that provides the high level utility for managing and executing simulation functionalities for a group of modules.
SimulationState is the input parameters used on each of the module's randomized GenesisState generator function.
# Interfaces
AppModule is the form for an application module.
Deprecated: use the embed extension interfaces instead, when needed.
AppModuleSimulation defines the standard functions that every module should expose for the SDK blockchain simulator.
Deprecated: The Configurator is deprecated.
HasABCIEndBlock is the interface for modules that need to run code at the end of the block.
HasABCIGenesis is the extension interface for stateful genesis methods which returns validator updates.
HasAminoCodec is the interface for modules that have amino codec registration.
HasGenesisBasics is the legacy interface for stateless genesis methods.
HasGRPCGateway is the interface for modules to register their gRPC gateway routes.
HasInvariants is the interface for registering invariants.
HasName allows the module to provide its own name for legacy purposes.
HasProposalContents defines the contents that can be used to simulate legacy governance (v1beta1) proposals.
HasProposalMsgs defines the messages that can be used to simulate governance (v1) proposals.
HasServices is the interface for modules to register services.
# Type aliases
HasGenesis is the extension interface for stateful genesis methods.
MigrationHandler is the migration function that each module registers.
ValidatorUpdate is the type for validator updates.
VersionMap is a map of moduleName -> version.