From 20ab4fac3a7d426a6109982b49c2027da7f08e9c Mon Sep 17 00:00:00 2001 From: Sviny Date: Wed, 5 Jun 2024 18:38:36 +0300 Subject: [PATCH 1/5] chore: update MailboxClient.sol file path in receive.mdx for more readebility --- docs/reference/messaging/receive.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/messaging/receive.mdx b/docs/reference/messaging/receive.mdx index 29a92b52..580d3955 100644 --- a/docs/reference/messaging/receive.mdx +++ b/docs/reference/messaging/receive.mdx @@ -59,7 +59,7 @@ The following utility is provided in the [`MailboxClient` library](../libraries/ -```solidity file=/node_modules/@hyperlane-xyz/core/contracts/client/MailboxClient.sol#L45-L51 +```solidity file=/node_modules/@hyperlane-xyz/core/contracts/client/MailboxClient.sol#L44-L53 ``` From f3bfdfdae03d9b234fd7a7032f2ba80ffed47ea3 Mon Sep 17 00:00:00 2001 From: Sviny Date: Thu, 6 Jun 2024 14:05:39 +0300 Subject: [PATCH 2/5] chore: update MailboxClient.sol file path in receive.mdx --- docs/reference/messaging/receive.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/messaging/receive.mdx b/docs/reference/messaging/receive.mdx index 580d3955..d573ecce 100644 --- a/docs/reference/messaging/receive.mdx +++ b/docs/reference/messaging/receive.mdx @@ -59,7 +59,7 @@ The following utility is provided in the [`MailboxClient` library](../libraries/ -```solidity file=/node_modules/@hyperlane-xyz/core/contracts/client/MailboxClient.sol#L44-L53 +```solidity file=/node_modules/@hyperlane-xyz/core/contracts/client/MailboxClient.sol#L47-L53 ``` From 703b7ed8fcc454923d9910872535bbd6c2328da7 Mon Sep 17 00:00:00 2001 From: Sviny Date: Thu, 6 Jun 2024 14:12:40 +0300 Subject: [PATCH 3/5] chore: update send.mdx for hyperlink in IMailbox --- docs/reference/messaging/send.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/messaging/send.mdx b/docs/reference/messaging/send.mdx index c78b370e..6a8be8f9 100644 --- a/docs/reference/messaging/send.mdx +++ b/docs/reference/messaging/send.mdx @@ -12,7 +12,7 @@ Contracts can send interchain messages by calling the `dispatch` function on the
-`IMailbox` Interface +[`IMailbox`](https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/solidity/contracts/interfaces/IMailbox.sol) Interface From 3a3eddcce8b61510b13b7e457d1955b8b10403dc Mon Sep 17 00:00:00 2001 From: Sviny Date: Thu, 6 Jun 2024 14:29:36 +0300 Subject: [PATCH 4/5] chore: remove IMailbox hyperlink, add short note with IMailbox interface on GitHub --- docs/reference/messaging/send.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/reference/messaging/send.mdx b/docs/reference/messaging/send.mdx index 6a8be8f9..d61fbec4 100644 --- a/docs/reference/messaging/send.mdx +++ b/docs/reference/messaging/send.mdx @@ -12,7 +12,7 @@ Contracts can send interchain messages by calling the `dispatch` function on the
-[`IMailbox`](https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/solidity/contracts/interfaces/IMailbox.sol) Interface +`IMailbox` Interface @@ -24,6 +24,8 @@ Contracts can send interchain messages by calling the `dispatch` function on the
+See the [`IMailbox Interface`](https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/solidity/contracts/interfaces/IMailbox.sol) for details. + ## Dispatch Calling this function dispatches a message to the destination domain and recipient. From 3dc1199a89c4f09615369268d1c7c56441ee2016 Mon Sep 17 00:00:00 2001 From: Sviny Date: Tue, 11 Jun 2024 13:00:10 +0300 Subject: [PATCH 5/5] chore: "check IMailbox" reference inside the collapsible section --- docs/reference/messaging/messaging-interface.mdx | 2 ++ docs/reference/messaging/send.mdx | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/reference/messaging/messaging-interface.mdx b/docs/reference/messaging/messaging-interface.mdx index 6cc6717e..94e8c96b 100644 --- a/docs/reference/messaging/messaging-interface.mdx +++ b/docs/reference/messaging/messaging-interface.mdx @@ -16,6 +16,8 @@ To [**receive**](./receive.mdx) interchain messages, implement the `handle` func
`IMailbox` Interface +See the [`IMailbox Interface`](https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/solidity/contracts/interfaces/IMailbox.sol) for details. + diff --git a/docs/reference/messaging/send.mdx b/docs/reference/messaging/send.mdx index d61fbec4..7ecc2aba 100644 --- a/docs/reference/messaging/send.mdx +++ b/docs/reference/messaging/send.mdx @@ -14,6 +14,8 @@ Contracts can send interchain messages by calling the `dispatch` function on the
`IMailbox` Interface +See the [`IMailbox Interface`](https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/solidity/contracts/interfaces/IMailbox.sol) for details. + @@ -24,8 +26,6 @@ Contracts can send interchain messages by calling the `dispatch` function on the
-See the [`IMailbox Interface`](https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/solidity/contracts/interfaces/IMailbox.sol) for details. - ## Dispatch Calling this function dispatches a message to the destination domain and recipient.