Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
bucanero authored Feb 21, 2025
1 parent 8a21bc5 commit 0548d3e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/3.tutorials/intents/0-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ the multichain bridge OmniBridge, visit the official

In this tutorial, you will learn how to:

- Deposit tokens from different chains (NEAR, EVM-compatible, Solana)
- Execute a swap using the NEAR Intents protocol
- Withdraw funds back to the destination chain if needed (NEAR, EVM-compatible, Solana)
- [Deposit tokens](1-deposit.mdx) from different chains (NEAR, EVM-compatible, Solana)
- [Execute a swap](2-swap.mdx) using the NEAR Intents protocol
- [Withdraw funds](3-withdraw.mdx) back to the destination chain if needed (NEAR, EVM-compatible, Solana)
4 changes: 2 additions & 2 deletions docs/3.tutorials/intents/1-deposit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ console.log(result);

## Depositing from Different Chains

Deposits and withdrawals from other chains into NEAR FTs are handled by the bridging service - Omni-bridge.
Deposits and withdrawals from other chains into NEAR FTs are handled by the bridging service - [Omni-Bridge](../../chain-abstraction/omnibridge/overview.md).

Since deposits involve the OmniBridge, ensure that the asset you are transferring is supported. To retrieve the full list of supported assets, use the following endpoint:

Expand Down Expand Up @@ -284,4 +284,4 @@ Keep in mind that the received `address` is unique for each `account_id`. **DO N

After successfully depositing your tokens, query your balance again using the same method described above to confirm the deposit was successful. This time, the response should return non-zero values.

The next step is to swap them for another asset. Continue to the next chapter to learn how.
The next step is to swap them for another asset. Continue to [the next chapter](2-swap.mdx) to learn how.
2 changes: 1 addition & 1 deletion docs/3.tutorials/intents/2-swap.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -354,4 +354,4 @@ const intentStatus = json.result || undefined;
</TabItem>
</Tabs>

If you ever decide to move your funds back to another chain, the next chapter will walk you through the withdrawal process.
If you ever decide to move your funds back to another chain, [the next chapter](3-withdraw.mdx) will walk you through the withdrawal process.

0 comments on commit 0548d3e

Please sign in to comment.