Skip to content

Commit 544b1d2

Browse files
authored
Fixed wrong address (#90)
* Update bridge-erc20-through-the-custom-gateway.mdx Fixed wrong address * Update bridge-erc20-through-the-custom-gateway.mdx
1 parent e4b7f5b commit 544b1d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/docs/en/developers/guides/bridge-erc20-through-the-custom-gateway.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ contract L1Token is ERC20 {
3636

3737
## Step 2: Launch the counterpart token on Scroll Sepolia testnet
3838

39-
Next, launch you'll launch a counterpart to this token on Scroll, which will represent the original token on Sepolia. This token can implement custom logic to match that of the L1 token or even add additional features beyond those of the L1 token.
39+
Next, you'll launch a counterpart to this token on Scroll, which will represent the original token on Sepolia. This token can implement custom logic to match that of the L1 token or even add additional features beyond those of the L1 token.
4040

4141
For this to work:
4242

43-
- The token must implement the `IScrollStandardERC20`` interface in order to be compatible with the bridge.
43+
- The token must implement the `IScrollStandardERC20` interface in order to be compatible with the bridge.
4444
- The contract should provide the gateway address and the counterpart token addresses (the L1 token we just launched) under the `gateway()` and `counterpart()` functions. It should also allow the L2 gateway to call the token `mint()` and `burn()` functions, which are called when a token is deposited and withdrawn.
4545

46-
The following is a complete example of a token compatible with the bridge. To the constructor, you will pass the official Scroll Custom Gateway address (`0x31C994F2017E71b82fd4D8118F140c81215bbb37`) and the address of the token launched on Sepolia.
46+
The following is a complete example of a token compatible with the bridge. To the constructor, you will pass the official Scroll Custom Gateway address (`0x058dec71E53079F9ED053F3a0bBca877F6f3eAcf`) and the address of the token launched on Sepolia.
4747

4848
```solidity
4949
// SPDX-License-Identifier: MIT

0 commit comments

Comments
 (0)