File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
tutorials/interoperability Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -27945,12 +27945,16 @@ Here is a high-level overview of an XCM lifecycle with observability events:
2794527945```mermaid
2794627946flowchart LR
2794727947 A[User submits extrinsic] --> B[Origin Chain Runtime constructs XCM]
27948- B --> C[" Runtime appends SetTopic instruction if missing" ]
27948+ B --> C[Runtime appends SetTopic instruction if missing]
2794927949 C --> D[PolkadotXcm.Sent event emitted with message_id]
2795027950 D --> E[XCM forwarded to Destination Chains]
2795127951 E --> F[Destination Chain executes XCM]
2795227952 F --> G[MessageQueue.Processed event emitted with matching id]
2795327953 G --> H[Success or failure logged; further hops if any]
27954+
27955+ G -->|correlates to| F
27956+ F -->|correlates to| E
27957+ E -->|correlates to| D
2795427958```
2795527959
2795627960* The `SetTopic` ensures a consistent `message_id` is passed and visible in these events.
Original file line number Diff line number Diff line change @@ -125,12 +125,16 @@ Here is a high-level overview of an XCM lifecycle with observability events:
125125```mermaid
126126flowchart LR
127127 A[User submits extrinsic] --> B[Origin Chain Runtime constructs XCM]
128- B --> C[" Runtime appends SetTopic instruction if missing" ]
128+ B --> C[Runtime appends SetTopic instruction if missing]
129129 C --> D[PolkadotXcm.Sent event emitted with message_id]
130130 D --> E[XCM forwarded to Destination Chains]
131131 E --> F[Destination Chain executes XCM]
132132 F --> G[MessageQueue.Processed event emitted with matching id]
133133 G --> H[Success or failure logged; further hops if any]
134+
135+ G -->|correlates to| F
136+ F -->|correlates to| E
137+ E -->|correlates to| D
134138```
135139
136140* The `SetTopic` ensures a consistent `message_id` is passed and visible in these events.
You can’t perform that action at this time.
0 commit comments