Versions in this module Expand all Collapse all v0 v0.3.2 Apr 16, 2025 Changes in this version + func ExportGenesis(ctx sdk.Context, k keeper.Keeper) *types.GenesisState + func InitGenesis(ctx sdk.Context, k keeper.Keeper, genState types.GenesisState) + type AppModule struct + func NewAppModule(cdc codec.Codec, keeper keeper.Keeper, accountKeeper types.AccountKeeper, ...) AppModule + func (AppModule) ConsensusVersion() uint64 + func (AppModule) GenerateGenesisState(simState *module.SimulationState) + func (am AppModule) AutoCLIOptions() *autocliv1.ModuleOptions + func (am AppModule) BeginBlock(_ context.Context) error + func (am AppModule) EndBlock(_ context.Context) error + func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.RawMessage + func (am AppModule) InitGenesis(ctx sdk.Context, cdc codec.JSONCodec, gs json.RawMessage) + func (am AppModule) IsAppModule() + func (am AppModule) IsOnePerModuleType() + func (am AppModule) ProposalMsgs(simState module.SimulationState) []simtypes.WeightedProposalMsg + func (am AppModule) RegisterInvariants(_ sdk.InvariantRegistry) + func (am AppModule) RegisterServices(cfg module.Configurator) + func (am AppModule) RegisterStoreDecoder(_ simtypes.StoreDecoderRegistry) + func (am AppModule) WeightedOperations(simState module.SimulationState) []simtypes.WeightedOperation + type AppModuleBasic struct + func NewAppModuleBasic(cdc codec.BinaryCodec) AppModuleBasic + func (AppModuleBasic) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage + func (AppModuleBasic) Name() string + func (AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *runtime.ServeMux) + func (AppModuleBasic) RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) + func (AppModuleBasic) ValidateGenesis(cdc codec.JSONCodec, config client.TxEncodingConfig, bz json.RawMessage) error + func (a AppModuleBasic) GetTxCmd() *cobra.Command + func (a AppModuleBasic) RegisterInterfaces(reg cdctypes.InterfaceRegistry) + type IBCModule struct + func NewIBCModule(k keeper.Keeper) IBCModule + func (im IBCModule) OnAcknowledgementPacket(ctx sdk.Context, modulePacket channeltypes.Packet, acknowledgement []byte, ...) error + func (im IBCModule) OnChanCloseConfirm(ctx sdk.Context, portID, channelID string) error + func (im IBCModule) OnChanCloseInit(ctx sdk.Context, portID, channelID string) error + func (im IBCModule) OnChanOpenAck(ctx sdk.Context, portID, channelID string, _, counterpartyVersion string) error + func (im IBCModule) OnChanOpenConfirm(ctx sdk.Context, portID, channelID string) error + func (im IBCModule) OnChanOpenInit(ctx sdk.Context, order channeltypes.Order, connectionHops []string, ...) (string, error) + func (im IBCModule) OnChanOpenTry(ctx sdk.Context, order channeltypes.Order, connectionHops []string, ...) (string, error) + func (im IBCModule) OnRecvPacket(ctx sdk.Context, modulePacket channeltypes.Packet, relayer sdk.AccAddress) ibcexported.Acknowledgement + func (im IBCModule) OnTimeoutPacket(ctx sdk.Context, modulePacket channeltypes.Packet, relayer sdk.AccAddress) error + type ModuleInputs struct + AccountKeeper types.AccountKeeper + BankKeeper types.BankKeeper + CapabilityScopedFn func(string) capabilitykeeper.ScopedKeeper + Cdc codec.Codec + Config *modulev1.Module + IBCKeeperFn func() *ibckeeper.Keeper + Logger log.Logger + StoreService store.KVStoreService + type ModuleOutputs struct + Module appmodule.AppModule + RollupKeeper keeper.Keeper + func ProvideModule(in ModuleInputs) ModuleOutputs