Skip to content
New issue

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

Fix typos #55

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/explorer.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The [Hyperlane Explorer](https://explorer.hyperlane.xyz/) can be used to find messages on any network with a Hyperlane deployment. Drill down into messages for more details about their properties and status.

Messages to/from [core chains](./reference/domains.mdx) will searchable by transaction hash, message ID, or sender/recipient address. For other chains, the explorer can be configured to search for messages by providing it a chain config.
Messages to/from [core chains](./reference/domains.mdx) will be searchable by transaction hash, message ID, or sender/recipient address. For other chains, the explorer can be configured to search for messages by providing it a chain config.

### Searching for messages

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/deploy-hyperlane-local-agents.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ cargo run --release --bin relayer -- \
--metrics-port 9091
```

The metrics port is overriden to avoid clashing with the validator.
The metrics port is overridden to avoid clashing with the validator.

:::note (optional) Run the binary directly

Expand Down
4 changes: 2 additions & 2 deletions docs/intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ Using Hyperlane, developers can build Interchain Applications - apps that span m
Some pre-built examples that can be deployed out of the box include:

1. Warp Routes, which allow native, `ERC20`, and `ERC721` tokens to move seamlessly across chains
2. Interchain accounts, which allows an account on one chain (e.g. a DAO) to make smart contract calls on remote chains
3. Interchain queries, which allow an account on one chain to make view calls on remote chains
2. Interchain accounts, which allow an account on one chain (e.g. a DAO) to make smart contract calls on remote chains
3. Interchain queries, which allow an account on one chain to make view calls on remote chains
2 changes: 1 addition & 1 deletion docs/reference/glossary.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Arguably the most important Hyperlane smart contract, the [mailbox](./messaging/

## Middleware

A smart contract that sends and receives messages, and exposes a developer facing API. Developers are expected use this API instead of interacting directly with the [mailbox](glossary.mdx#mailbox).
A smart contract that sends and receives messages, and exposes a developer facing API. Developers are expected to use this API instead of interacting directly with the [mailbox](glossary.mdx#mailbox).

Example middlewares include [interchain-accounts-ica](glossary.mdx#interchain-accounts-ica) and [interchain-queries-iqs](glossary.mdx#interchain-queries-iqs)

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/messaging/send.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ Underpayment to `dispatch` will revert but overpayment will be refunded to the m
There are two hooks configured on a Mailbox

- `required`: invoked for all `dispatch` calls with value that covers the required fee
- `default`: invoked (unless overriden) with remaining value after `required` hook
- `default`: invoked (unless overridden) with remaining value after `required` hook

```mermaid
flowchart LR
Expand Down