Versions in this module Expand all Collapse all v8 v8.0.0 Jul 22, 2024 Changes in this version + type AppModule struct + func NewAppModule(cdc codec.Codec, keeper keeper.Keeper) AppModule + func (AppModule) ConsensusVersion() uint64 + func (AppModule) QuerierRoute() string + func (am AppModule) BeginBlock(ctx sdk.Context) + func (am AppModule) EndBlock(_ sdk.Context) ([]abci.ValidatorUpdate, 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) []abci.ValidatorUpdate + func (am AppModule) IsAppModule() + func (am AppModule) IsOnePerModuleType() + func (am AppModule) Name() string + func (am AppModule) RegisterInvariants(_ sdk.InvariantRegistry) + func (am AppModule) RegisterServices(cfg module.Configurator) + type AppModuleBasic struct + func NewAppModuleBasic(cdc codec.BinaryCodec) AppModuleBasic + func (AppModuleBasic) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage + func (AppModuleBasic) GetQueryCmd() *cobra.Command + func (AppModuleBasic) Name() string + func (AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *runtime.ServeMux) + func (AppModuleBasic) RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) + func (AppModuleBasic) RegisterRESTRoutes(clientCtx client.Context, rtr *mux.Router) + 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 IBCMiddleware struct + func NewIBCMiddleware(k keeper.Keeper, app porttypes.IBCModule) IBCMiddleware + func (i IBCMiddleware) GetAppVersion(ctx sdk.Context, portID, channelID string) (string, bool) + func (im IBCMiddleware) OnAcknowledgementPacket(ctx sdk.Context, packet channeltypes.Packet, acknowledgement []byte, ...) error + func (im IBCMiddleware) OnChanCloseConfirm(ctx sdk.Context, portID, channelID string) error + func (im IBCMiddleware) OnChanCloseInit(ctx sdk.Context, portID, channelID string) error + func (im IBCMiddleware) OnChanOpenAck(ctx sdk.Context, portID, channelID string, counterpartyChannelID string, ...) error + func (im IBCMiddleware) OnChanOpenConfirm(ctx sdk.Context, portID, channelID string) error + func (im IBCMiddleware) OnChanOpenInit(ctx sdk.Context, order channeltypes.Order, connectionHops []string, ...) (string, error) + func (im IBCMiddleware) OnChanOpenTry(ctx sdk.Context, order channeltypes.Order, connectionHops []string, ...) (string, error) + func (im IBCMiddleware) OnRecvPacket(ctx sdk.Context, packet channeltypes.Packet, relayer sdk.AccAddress) exported.Acknowledgement + func (im IBCMiddleware) OnTimeoutPacket(ctx sdk.Context, packet channeltypes.Packet, relayer sdk.AccAddress) error + func (im IBCMiddleware) SendPacket(ctx sdk.Context, chanCap *capabilitytypes.Capability, sourcePort string, ...) (sequence uint64, err error) + func (im IBCMiddleware) WriteAcknowledgement(ctx sdk.Context, chanCap *capabilitytypes.Capability, packet exported.PacketI, ...) error + type ModuleInputs struct + BankKeeper types.BankKeeper + Cdc codec.Codec + Config *modulev1.Module + StoreService store.KVStoreService + Subspace paramstypes.Subspace + type ModuleOutputs struct + Keeper *keeper.Keeper + Module appmodule.AppModule + func ProvideModule(in ModuleInputs) ModuleOutputs Other modules containing this package github.com/cosmos/ibc-apps/modules/rate-limiting/v7