Skip to content

Commit 58c5265

Browse files
committed
updated the contract link
1 parent 65991f9 commit 58c5265

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pages/app-developers/tutorials/bridging/standard-bridge-standard-token.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ is_imported_content: 'false'
1616
---
1717

1818
import { Callout, Steps } from 'nextra/components'
19-
import { WipCallout } from '@/components/WipCallout'
2019

21-
<WipCallout />
2220
# Bridging Your Standard ERC-20 Token Using the Standard Bridge
2321

2422
In this tutorial you'll learn how to bridge a standard ERC-20 token from Ethereum to an OP Stack chain using the Standard Bridge system.
@@ -34,7 +32,7 @@ The Standard Bridge **does not** support [**fee on transfer tokens**](https://gi
3432

3533
## About OptimismMintableERC20s
3634

37-
The Standard Bridge system requires that L2 representations of L1 tokens implement the [`IOptimismMintableERC20`](https://github.com/ethereum-optimism/optimism/blob/v1.1.4/packages/contracts-bedrock/src/universal/IOptimismMintableERC20.sol) interface.
35+
The Standard Bridge system requires that L2 representations of L1 tokens implement the [`IOptimismMintableERC20`](https://github.com/ethereum-optimism/optimism/blob/v1.12.0/packages/contracts-bedrock/src/universal/OptimismMintableERC20.sol) interface.
3836
This interface is a superset of the standard ERC-20 interface and includes functions that allow the bridge to properly verify deposits/withdrawals and mint/burn tokens as needed.
3937
Your L2 token contract must implement this interface in order to be bridged using the Standard Bridge system.
4038
This tutorial will show you how to use the [`OptimismMintableERC20Factory`](https://github.com/ethereum-optimism/optimism/blob/develop/packages/contracts-bedrock/src/universal/OptimismMintableERC20Factory.sol) to create a basic standardized ERC-20 token on layer 2.

0 commit comments

Comments
 (0)