This document provides instructions on integrating and configuring the Packet Forward Middleware (PFM) within your existing chain implementation. The integration steps include the following:
Use this file to discover all available pages before exploring further.
This document provides instructions on integrating and configuring the Packet Forward Middleware (PFM) within your
existing chain implementation.
The integration steps include the following:
Configuring the transfer application stack with Packet Forward Middleware
Here is an example of how to create an application stack using transfer and packet-forward-middleware.
The following transferStack is configured in app/app.go and added to the IBC Router.
The in-line comments describe the execution flow of packets between the application stack and IBC core.For more information on configuring an IBC application stack see the ibc-go docs here.
/ Create Transfer Stack/ SendPacket, since it is originating from the application to core IBC:/ transferKeeper.SendPacket -> packetforward.SendPacket -> channel.SendPacket/ RecvPacket, message that originates from core IBC and goes down to app, the flow is the other way/ channel.RecvPacket -> packetforward.OnRecvPacket -> transfer.OnRecvPacket/ transfer stack contains (from top to bottom):/ - Packet Forward Middleware/ - Transfervar transferStack ibcporttypes.IBCModuletransferStack = transfer.NewIBCModule(app.TransferKeeper)transferStack = packetforward.NewIBCMiddleware( transferStack, app.PacketForwardKeeper, 0, / retries on timeout packetforwardkeeper.DefaultForwardTransferPacketTimeoutTimestamp, / forward timeout)/ Add transfer stack to IBC RouteribcRouter.AddRoute(ibctransfertypes.ModuleName, transferStack)
Configurable options in the Packet Forward Middleware
The Packet Forward Middleware has several configurable options available when initializing the IBC application stack.
You can see these passed in as arguments to packetforward.NewIBCMiddleware and they include the number of retries that
will be performed on a forward timeout, the timeout period that will be used for a forward, and the timeout period that
will be used for performing refunds in the case that a forward is taking too long.Additionally, there is a fee percentage parameter that can be set in InitGenesis, this is an optional parameter that
can be used to take a fee from each forwarded packet which will then be distributed to the community pool. In the
OnRecvPacket callback ForwardTransferPacket is invoked which will attempt to subtract a fee from the forwarded
packet amount if the fee percentage is non-zero.
Retries On Timeout - how many times will a forward be re-attempted in the case of a timeout.
Timeout Period - how long can a forward be in progress before giving up.
Refund Timeout - how long can a forward be in progress before issuing a refund back to the original source chain.
Fee Percentage - % of the forwarded packet amount which will be subtracted and distributed to the community pool.