-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ucs01-relay): create pfm events st hubble can track outgoing hop…
… packets (#2057) - Add event for PFM hops (expected format below) - Cleanup existing PFM events - Remove uses of unwrap relevant to PFM ## PFM Hop Event Structure ``` packet_forward_hop: - recv_sequence: <u64> - dest_channel: <String> - dest_port: <String> - sent_sequence: <u64> - src_channel: <String> - src_port: <String> ``` ## Real Example Osmosis -> Union -> Ethereum ``` - attributes: - index: true key: _contract_address value: union1uvagqv5qy0d6udhj3wq74jxelqs8nl7rxdun4fdtymhv24d4zrcs9n97rr - index: true key: recv_sequence value: "1" - index: true key: dest_channel value: channel-0 - index: true key: dest_port value: wasm.union1uvagqv5qy0d6udhj3wq74jxelqs8nl7rxdun4fdtymhv24d4zrcs9n97rr - index: true key: sent_sequence value: "1" - index: true key: src_channel value: channel-0 - index: true key: src_port value: transfer - index: true key: msg_index value: "0" type: wasm-packet_forward_hop ```
- Loading branch information
Showing
3 changed files
with
33 additions
and
8 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
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