Fee distribution
Learn about payee registration for the distribution of packet fees. The following document is intended for relayer operators.
Pre-requisite readings
Packet fees are divided into 3 distinct amounts in order to compensate relayer operators for packet relaying on fee enabled IBC channels.
RecvFee
: The sum of all packet receive fees distributed to a payee for successful execution ofMsgRecvPacket
.AckFee
: The sum of all packet acknowledgement fees distributed to a payee for successful execution ofMsgAcknowledgement
.TimeoutFee
: The sum of all packet timeout fees distributed to a payee for successful execution ofMsgTimeout
.
Register a counterparty payee address for forward relaying
As mentioned in ICS29 Concepts, the forward relayer describes the actor who performs the submission of MsgRecvPacket
on the destination chain.
Fee distribution for incentivized packet relays takes place on the packet source chain.
Relayer operators are expected to register a counterparty payee address, in order to be compensated accordingly with
RecvFee
s upon completion of a packet lifecycle.
The counterparty payee address registered on the destination chain is encoded into the packet acknowledgement and communicated as such to the source chain for fee distribution. If a counterparty payee is not registered for the forward relayer on the destination chain, the escrowed fees will be refunded upon fee distribution.
Relayer operator actions
A transaction must be submitted to the destination chain including a CounterpartyPayee
address of an account on the source chain.
The transaction must be signed by the Relayer
.
Note: If a module account address is used as the CounterpartyPayee
but the module has been set as a blocked address in the BankKeeper
, the refunding to the module account will fail. This is because many modules use invariants to compare internal tracking of module account balances against the actual balance of the account stored in the BankKeeper
. If a token transfer to the module account occurs without going through this module and updating the account balance of the module on the BankKeeper
, then invariants may break and unknown behaviour could occur depending on the module implementation. Therefore, if it is desirable to use a module account that is currently blocked, the module developers should be consulted to gauge to possibility of removing the module account from the blocked list.
type MsgRegisterCounterpartyPayee struct {
// unique port identifier
PortId string
// unique channel identifier
ChannelId string
// the relayer address
Relayer string
// the counterparty payee address
CounterpartyPayee string
}
This message is expected to fail if:
PortId
is invalid (see 24-host naming requirements.ChannelId
is invalid (see 24-host naming requirements).Relayer
is an invalid address (see Cosmos SDK Addresses).CounterpartyPayee
is empty or contains more than 2048 bytes.
See below for an example CLI command:
simd tx ibc-fee register-counterparty-payee transfer channel-0 \
cosmos1rsp837a4kvtgp2m4uqzdge0zzu6efqgucm0qdh \
osmo1v5y0tz01llxzf4c2afml8s3awue0ymju22wxx2 \
--from cosmos1rsp837a4kvtgp2m4uqzdge0zzu6efqgucm0qdh
Register an alternative payee address for reverse and timeout relaying
As mentioned in ICS29 Concepts, the reverse relayer describes the actor who performs the submission of MsgAcknowledgement
on the source chain.
Similarly the timeout relayer describes the actor who performs the submission of MsgTimeout
(or MsgTimeoutOnClose
) on the source chain.
Relayer operators may choose to register an optional payee address, in order to be compensated accordingly with
AckFee
s andTimeoutFee
s upon completion of a packet life cycle.
If a payee is not registered for the reverse or timeout relayer on the source chain, then fee distribution assumes the default behaviour, where fees are paid out to the relayer account which delivers MsgAcknowledgement
or MsgTimeout
/MsgTimeoutOnClose
.
Relayer operator actions
A transaction must be submitted to the source chain including a Payee
address of an account on the source chain.
The transaction must be signed by the Relayer
.
Note: If a module account address is used as the Payee
it is recommended to turn off invariant checks for that module.
type MsgRegisterPayee struct {
// unique port identifier
PortId string
// unique channel identifier
ChannelId string
// the relayer address
Relayer string
// the payee address
Payee string
}
This message is expected to fail if:
PortId
is invalid (see 24-host naming requirements.ChannelId
is invalid (see 24-host naming requirements).Relayer
is an invalid address (see Cosmos SDK Addresses).Payee
is an invalid address (see Cosmos SDK Addresses).
See below for an example CLI command:
simd tx ibc-fee register-payee transfer channel-0 \
cosmos1rsp837a4kvtgp2m4uqzdge0zzu6efqgucm0qdh \
cosmos153lf4zntqt33a4v0sm5cytrxyqn78q7kz8j8x5 \
--from cosmos1rsp837a4kvtgp2m4uqzdge0zzu6efqgucm0qdh