Skip to content

Commit 296c296

Browse files
authored
Merge pull request #1528 from ethereum-optimism/standard-ERC20
Bridging Standard ERC-20 tutorial update
2 parents fd972b5 + 58c5265 commit 296c296

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

+1-3
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)