We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Useful e.g. for some dedicated UI/indexer, where it could show the full track of events from source to target:
let em_message = xcm::ExportMesage(dest, inner_message);
em_message_id
ExportMesage
inner_message
inner_message_id
(em_message_id, em_message)
(inner_message_id, inner_message)
| BRIDGE |
Possible solutions:
(contextId, em_message_id, em_message)
(contextId, inner_message_id, inner_message)
XcmContext
topic
Context: e.g. polkaholic.io is already tracking (xcm) events: paritytech/cumulus#2468
Relates to: paritytech/polkadot-sdk#1905
The text was updated successfully, but these errors were encountered:
DownwardMessageSent
this will be the direction: paritytech/polkadot#7161 (comment) paritytech/polkadot#7234 paritytech/substrate#14149
Sorry, something went wrong.
No branches or pull requests
Useful e.g. for some dedicated UI/indexer, where it could show the full track of events from source to target:
let em_message = xcm::ExportMesage(dest, inner_message);
, so we can now trackem_message_id
(ump/dmp)ExportMesage
is unwrapped andinner_message
is sent over bridge, so on the other side we can track justinner_message_id
(em_message_id, em_message)
->(inner_message_id, inner_message)
->| BRIDGE |
->(inner_message_id, inner_message)
Possible solutions:
em_message_id
->inner_message_id
(but neither id is unique so this is not exact solution)(contextId, em_message_id, em_message)
->(contextId, inner_message_id, inner_message)
->| BRIDGE |
->(contextId, inner_message_id, inner_message)
XcmContext
or usetopic
somehow?Context:
e.g. polkaholic.io is already tracking (xcm) events: paritytech/cumulus#2468
Relates to: paritytech/polkadot-sdk#1905
The text was updated successfully, but these errors were encountered: