Documentation ¶
Index ¶
- type IBCConversionModule
- func (im IBCConversionModule) OnAcknowledgementPacket(ctx sdk.Context, packet channeltypes.Packet, acknowledgement []byte, ...) error
- func (im IBCConversionModule) OnChanCloseConfirm(ctx sdk.Context, portID, channelID string) error
- func (im IBCConversionModule) OnChanCloseInit(ctx sdk.Context, portID, channelID string) error
- func (im IBCConversionModule) OnChanOpenAck(ctx sdk.Context, portID, channelID string, counterpartyChannelID string, ...) error
- func (im IBCConversionModule) OnChanOpenConfirm(ctx sdk.Context, portID, channelID string) error
- func (im IBCConversionModule) OnChanOpenInit(ctx sdk.Context, order channeltypes.Order, connectionHops []string, ...) (string, error)
- func (im IBCConversionModule) OnChanOpenTry(ctx sdk.Context, order channeltypes.Order, connectionHops []string, ...) (string, error)
- func (im IBCConversionModule) OnRecvPacket(ctx sdk.Context, packet channeltypes.Packet, relayer sdk.AccAddress) exported.Acknowledgement
- func (im IBCConversionModule) OnTimeoutPacket(ctx sdk.Context, packet channeltypes.Packet, relayer sdk.AccAddress) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IBCConversionModule ¶
type IBCConversionModule struct {
// contains filtered or unexported fields
}
IBCConversionModule implements the ICS26 interface.
func NewIBCConversionModule ¶
func NewIBCConversionModule(app porttypes.IBCModule, ck cronoskeeper.Keeper) IBCConversionModule
NewIBCConversionModule creates a new IBCModule given the keeper and underlying application
func (IBCConversionModule) OnAcknowledgementPacket ¶
func (im IBCConversionModule) OnAcknowledgementPacket( ctx sdk.Context, packet channeltypes.Packet, acknowledgement []byte, relayer sdk.AccAddress, ) error
OnAcknowledgementPacket implements the IBCModule interface
func (IBCConversionModule) OnChanCloseConfirm ¶
func (im IBCConversionModule) OnChanCloseConfirm( ctx sdk.Context, portID, channelID string, ) error
OnChanCloseConfirm implements the IBCModule interface
func (IBCConversionModule) OnChanCloseInit ¶
func (im IBCConversionModule) OnChanCloseInit( ctx sdk.Context, portID, channelID string, ) error
OnChanCloseInit implements the IBCModule interface
func (IBCConversionModule) OnChanOpenAck ¶
func (im IBCConversionModule) OnChanOpenAck( ctx sdk.Context, portID, channelID string, counterpartyChannelID string, counterpartyVersion string, ) error
OnChanOpenAck implements the IBCModule interface
func (IBCConversionModule) OnChanOpenConfirm ¶
func (im IBCConversionModule) OnChanOpenConfirm( ctx sdk.Context, portID, channelID string, ) error
OnChanOpenConfirm implements the IBCModule interface
func (IBCConversionModule) OnChanOpenInit ¶
func (im IBCConversionModule) OnChanOpenInit( ctx sdk.Context, order channeltypes.Order, connectionHops []string, portID string, channelID string, chanCap *capabilitytypes.Capability, counterparty channeltypes.Counterparty, version string, ) (string, error)
OnChanOpenInit implements the IBCModule interface
func (IBCConversionModule) OnChanOpenTry ¶
func (im IBCConversionModule) OnChanOpenTry( ctx sdk.Context, order channeltypes.Order, connectionHops []string, portID, channelID string, chanCap *capabilitytypes.Capability, counterparty channeltypes.Counterparty, counterpartyVersion string, ) (string, error)
func (IBCConversionModule) OnRecvPacket ¶
func (im IBCConversionModule) OnRecvPacket( ctx sdk.Context, packet channeltypes.Packet, relayer sdk.AccAddress, ) exported.Acknowledgement
OnRecvPacket implements the IBCModule interface.
func (IBCConversionModule) OnTimeoutPacket ¶
func (im IBCConversionModule) OnTimeoutPacket( ctx sdk.Context, packet channeltypes.Packet, relayer sdk.AccAddress, ) error
OnTimeoutPacket implements the IBCModule interface
Click to show internal directories.
Click to hide internal directories.