forked from cosmos/ibc-go
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: adding events to fee middleware docs (cosmos#1578)
* adding fee distribution docs for relayer operators * adding validation information and basic cli examples * removing unnecessary whitespace * updating definitions * adding ics29 fee middleware events docs * cleanup Co-authored-by: Sean King <[email protected]>
- Loading branch information
1 parent
3b5db68
commit 36a3382
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!-- | ||
order: 5 | ||
--> | ||
|
||
# Events | ||
|
||
## `MsgPayPacketFee`, `MsgPayPacketFeeAsync` | ||
|
||
| Type | Attribute Key | Attribute Value | | ||
|-------------------------|-----------------|-----------------| | ||
| incentivized_ibc_packet | port_id | {portID} | | ||
| incentivized_ibc_packet | channel_id | {channelID} | | ||
| incentivized_ibc_packet | packet_sequence | {sequence} | | ||
| incentivized_ibc_packet | recv_fee | {recvFee} | | ||
| incentivized_ibc_packet | ack_fee | {ackFee} | | ||
| incentivized_ibc_packet | timeout_fee | {timeoutFee} | | ||
| message | module | fee-ibc | | ||
|
||
## `RegisterPayee` | ||
|
||
| Type | Attribute Key | Attribute Value | | ||
|----------------|------------|--------------------| | ||
| register_payee | relayer | {relayer} | | ||
| register_payee | payee | {payee} | | ||
| register_payee | channel_id | {channelID} | | ||
| message | module | fee-ibc | | ||
|
||
## `RegisterCounterpartyPayee` | ||
|
||
| Type | Attribute Key | Attribute Value | | ||
|-----------------------------|--------------------|---------------------| | ||
| register_counterparty_payee | relayer | {relayer} | | ||
| register_counterparty_payee | counterparty_payee | {counterpartyPayee} | | ||
| register_counterparty_payee | channel_id | {channelID} | | ||
| message | module | fee-ibc | |