From 8ebfc231b53ad955d7d47f244087bfa2fdfed705 Mon Sep 17 00:00:00 2001 From: Dennis Date: Tue, 12 Mar 2024 18:39:33 +0100 Subject: [PATCH] chore(docs): develop notice xmsg only for finalized xmsgs (#574) Mention on develop section about xmsg only being relayed once finalized task: https://app.asana.com/0/1206684215872507/1206806971862696/f --- docs/site/docs/develop/introduction.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/site/docs/develop/introduction.md b/docs/site/docs/develop/introduction.md index 2fd9c8296..12fceef95 100644 --- a/docs/site/docs/develop/introduction.md +++ b/docs/site/docs/develop/introduction.md @@ -22,3 +22,9 @@ omni.xmsg().sender // who sent it (msg.sender of the source xcall) ``` `omni` is a reference to the [OmniPortal](./contracts.md#omniportal) contract. One portal is deployed on each supported chain. To make interacting with the portal easier, inherit from the [XApp](./xapp/xapp.md) contract. + +:::info Only Finalized Cross-Chain Messages are Relayed + +`XMsg` can only be relayed to the destination chain once the transaction it belongs to finalizes on Ethereum. + +:::