Skip to content

Commit 43cd8f8

Browse files
committed
docs-errors
1 parent 33d50db commit 43cd8f8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/content/docs/en/developers/l1-and-l2-bridging/erc1155-token-bridge.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ERC1155 bridging from L1 to L2 is done via the L1ERC1155Gateway. Similarly to ER
1616

1717
<Aside type="tip" title="">
1818
**`depositERC1155`** is a payable function, and the amount of ETH sent to this function will be used to pay for L2
19-
fees. If the amount is not enough, the transaction will not be sent. All excess eth will be sent back to the sender.
19+
fees. If the amount is not enough, the transaction will not be sent. All excess ETH will be sent back to the sender.
2020
`0.00001 ETH` should be more than enough to process a token deposit.
2121
</Aside>
2222

@@ -87,7 +87,7 @@ The `L2ERC1155Gateway` contract is used to send tokens from L2 to L1. Before bri
8787

8888
<Aside type="caution" title="">
8989
**Make sure the transaction won't revert on L1** while sending from L2. There is no way to recover tokens bridged if
90-
you're transaction reverts on L1. All assets are burnt on L2 when the transaction is sent, and it's impossible to mint
90+
your transaction reverts on L1. All assets are burnt on L2 when the transaction is sent, and it's impossible to mint
9191
them again.
9292
</Aside>
9393

src/content/docs/en/developers/l1-and-l2-bridging/erc721-nft-bridge.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ import Aside from "../../../../../components/Aside.astro"
1414

1515
NFT bridging from L1 to L2 is done via the `L1ERC721Gateway` contract instead of using a router. Similarly to bridging ERC20 tokens, we use the `depositERC721` function to send tokens to L2, and we can later retrieve them back to L1 using `withdrawERC721` on the `L2ERC721Gateway` contract deployed on L2.
1616

17-
NFT contracts on both L1 and l2 must be launched and connected through the Gateways to enable bridging. This means deposit and withdraw transactions will revert if a contract on either L1 or L2 is missing or not mapped through the `updateTokenMapping` function.
17+
NFT contracts on both L1 and L2 must be launched and connected through the Gateways to enable bridging. This means deposit and withdraw transactions will revert if a contract on either L1 or L2 is missing or not mapped through the `updateTokenMapping` function.
1818

1919
<Aside type="tip" title="">
2020
**`depositERC721`** is a payable function. The amount of ETH sent to this function will be used to pay for L2 fees. If
21-
the amount is not enough, the transaction will not be sent. All excess eth will be sent back to the sender. `0.00001
21+
the amount is not enough, the transaction will not be sent. All excess ETH will be sent back to the sender. `0.00001
2222
ETH` should be more than enough to process a token deposit.
2323
</Aside>
2424

0 commit comments

Comments
 (0)