-
Notifications
You must be signed in to change notification settings - Fork 687
/
Copy pathmodule.go
37 lines (30 loc) · 943 Bytes
/
module.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package api
import (
"context"
sdk "github.com/cosmos/cosmos-sdk/types"
channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types"
)
// IBCModule defines an interface that implements all the callbacks
// that modules must define as specified in IBC Protocol V2.
type IBCModule interface {
// OnSendPacket is executed when a packet is being sent from sending chain.
// this callback is provided with the source and destination IDs, the signer, the packet sequence and the packet data
// for this specific application.
OnSendPacket(
ctx context.Context,
sourceID string,
destinationID string,
sequence uint64,
data channeltypesv2.PacketData,
signer sdk.AccAddress,
) error
OnRecvPacket(
ctx context.Context,
sourceID string,
destinationID string,
data channeltypesv2.PacketData,
relayer sdk.AccAddress,
) channeltypesv2.RecvPacketResult
// OnAcknowledgementPacket
// OnTimeoutPacket
}