diff --git a/pages/stack/interop/superchain-erc20.mdx b/pages/stack/interop/superchain-erc20.mdx index 51bc1e98b..fd3a4a3e6 100644 --- a/pages/stack/interop/superchain-erc20.mdx +++ b/pages/stack/interop/superchain-erc20.mdx @@ -98,7 +98,6 @@ Setting this up in advance ensures tokens will benefit from interop when it beco */} * Deploy the ERC-20 contract at the same address on every chain in the Superchain. - This is easiest when using [`create2`](https://book.getfoundry.sh/guides/deterministic-deployments-using-create2). To ensure security, you must either design the deployer to allow only a specific trusted ERC-20 contract, such as `SuperchainERC20`, to be deployed through it, or call `CREATE2` to deploy the contract directly from an EOA you control. diff --git a/pages/stack/interop/tools/devnet.mdx b/pages/stack/interop/tools/devnet.mdx index ef9da26ce..96a055d1b 100644 --- a/pages/stack/interop/tools/devnet.mdx +++ b/pages/stack/interop/tools/devnet.mdx @@ -1,48 +1,45 @@ --- -title: Interop Devnet (coming soon) +title: Interop Devnet lang: en-US -description: Details on the public interoperability devnets. +description: Details on the public interoperability devnet --- import { Callout, Tabs, Steps } from 'nextra/components' -# Interop devnet (coming soon) +# Interop devnet Interop devnet is currently in active development and may experience periods of instability, including potential outages, as the networks are regularly updated and improved. Developers should expect some level of unreliability when interacting with the devnet. The devnet is intended for testing and development purposes only, and should not be relied upon for mission-critical applications. -{/* -The Interop devnet is a temporary public network of two OP Stack Sepolia instances that supports SuperERC20 tokens, native cross-chain messaging, and cross-chain ETH transfers. As we iterate on Superchain interop, these networks will be deprecated once the next devnets are released. - -NOTE: The current Interop devnet has been deprecated. This page will be updated once the next Interop devnet is live. +The Interop devnet is a temporary public network of two OP Stack Sepolia instances that support Superchain interop enabling native ETH and SuperchainERC20 cross-chain token transfers. As we iterate on Superchain interop, these networks will be deprecated once the next devnets are released. ## Interop devnet 0 -| Parameter | Value | -| --------------------------- | ----- | -| Network Name | `TBA` | -| Chain ID | `TBA` | -| Currency Symbol1 | ETH | -| Explorer | 'TBA' | -| Public RPC URL | 'TBA' | -| Sequencer URL | 'TBA' | -| OptimismPortal2 | `TBD` | +| Parameter | Value | +| --------------------------- | ---------------------------------------------------------------------------- | +| Network Name | `interop-alpha-0` | +| Chain ID | `420120000` | +| Currency Symbol1 | ETH | +| Explorer | 'TBA' | +| Public RPC URL | '[https://interop-alpha-0.optimism.io](https://interop-alpha-0.optimism.io)' | +| Sequencer URL | '[https://interop-alpha-0.optimism.io](https://interop-alpha-0.optimism.io)' | +| OptimismPortal2 | `0x7385d89d38ab79984e7c84fab9ce5e6f4815468a` | ## Interop devnet 1 -| Parameter | Value | -| --------------------------- | ----- | -| Network Name | `TBA` | -| Chain ID | `TBA` | -| Currency Symbol1 | ETH | -| Explorer | 'TBA' | -| Public RPC URL | 'TBA' | -| Sequencer URL | 'TBA' | -| OptimismPortal2 | `TBD` | +| Parameter | Value | +| --------------------------- | ---------------------------------------------------------------------------- | +| Network Name | `interop-alpha-1` | +| Chain ID | `420120001` | +| Currency Symbol1 | ETH | +| Explorer | 'TBA' | +| Public RPC URL | '[https://interop-alpha-1.optimism.io](https://interop-alpha-1.optimism.io)' | +| Sequencer URL | '[https://interop-alpha-1.optimism.io](https://interop-alpha-1.optimism.io)' | +| OptimismPortal2 | `0x55f5c4653dbcde7d1254f9c690a5d761b315500c` | 1. The "currency symbol" is required by some wallets like MetaMask. -2. The `OptimismPortal` is a low-level contract responsible for passing messages between L1 and L2. Messages sent directly to the `OptimismPortal` have no form of replayability. You can send ether directly to the portal to receive it to the sender address on the L2. +2. The `OptimismPortal` is a low-level contract responsible for passing messages between L1 and L2. You can send `ETH` directly to the portal to receive it to the sender address on the L2. ## Sending ETH to the interop devnets @@ -62,7 +59,6 @@ NOTE: The current Interop devnet has been deprecated. This page will be updated ## Next steps -* Want to start with local development? Use [Supersim](/stack/interop/tools/supersim), a local dev environment that simulates interop for testing applications against a local version of the Superchain. -* Read about [Interop message passing](/stack/interop/explainer#how-messages-get-from-one-chain-to-the-other) to see how you can implement it yourself on this devnet. - -*/} +* Review the [Superchain Interop Explainer](../explainer) for answers to common questions about interoperability. +* Read the [Message Passing Explainer](../message-passing) to understand what happens "under the hood". +* Write a revolutionary app that uses multiple blockchains within the Superchain