SuperchainERC20 Quickstart
Learn how to deploy a SuperchainERC20 on Swellchain
The SuperchainERC20 standard is ready for production deployments. Please note that the OP Stack interoperability upgrade, required for crosschain messaging, is currently in active development.
Welcome to the SuperchainERC20 quickstart guide! In this guide, we'll cover how the token works and deployment process. Whether you're a seasoned developer or just starting out, this guide has got you covered.
What is SuperchainERC20?
SuperchainERC20 provides a standardized token implementation enabling seamless token transfers across the Superchain.
SuperchainERC20 extends the standard ERC-20 token with cross-chain mint and burn capabilities, enabling seamless interoperability across the Superchain interop cluster. This token standard implements the ERC-7802 interface to enable 1-block latency cross-chain mint/burn functionality.
How does SuperchainERC20 work?
SuperchainERC20 and SuperchainTokenBridge work together to allow ERC-20 tokens to be transferred from one chain to the other.
SuperchainERC20 cross-chain transfers require two transactions:
- Initiate Transaction: On the source chain, tokens are burned and a cross-chain message is emitted
- Execute Transaction: The message is relayed to the destination chain, triggering token minting
This flow ensures tokens maintain consistent total supply across the entire Superchain ecosystem and eliminates the need for liquidity pools or wrapped tokens.
Why SuperchainERC20 matters for users, token issuers, and apps on Swellchain
Superchain interop provides Swellchain with essential cross-chain capabilities that enhance the network's interoperability. When token issuers use SuperchainERC20 over a typical ER-C20 deployment it gives token issuers access to the broader Superchain network effects, ensuring your tokens can seamlessly be used by apps and users across the Superchain.
SuperchainERC20 deployment creates opportunities for:
- Enhanced Liquidity: Unified token representation across chains improves capital efficiency
- Simplified Developer Experience: Consistent API for projects building on Swellchain
- Reduced Fragmentation: Improved capital efficiency for DeFi applications across the Superchain ecosystem - one chain to rule them all
Deploying SuperchainERC20 - Quickstart
This guide provides a streamlined approach to deploying SuperchainERC20 tokens on Swellchain
Prerequisites
- Foundry toolchain
- Node.js and pnpm
- Wallet with funds on Swellchain
Install Foundry toolchain:
Setup and Deployment
- Clone the starter kit repository:
- Install dependencies:
- Initialize environment files:
- Configure deployment parameters in
deploy-config.toml
:
The chains
field accepts a list of chain identifiers.
You can find more here in the Superchain Registry.
- Update RPC endpoints:
- Deploy your token:
This deployment process uses Create2
to ensure your token deploys to the same address across all specified chains, a critical requirement for cross-chain functionality.
Verify that your token is deployed at the same address on all target chains by checking each chain's block explorer with the contract address.
Security Considerations
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.
This precaution is critical because if an unauthorized ERC-20 contract is deployed at the same address on any Superchain network, it could allow malicious actors to mint unlimited tokens and bridge them to the network where the original ERC-20 contract resides.
For production deployments, ensure that:
- Grant permissions to the
SuperchainTokenBridge
(address0x4200000000000000000000000000000000000028
) to callcrosschainMint
andcrosschainBurn
. - The same salt value is used across all deployments to maintain address consistency. If you do not deploy the contract to a specific destination chain, users will be unable to successfully move their tokens to that chain.
- Token supply is properly managed across chains to prevent inflation
Testing Your Deployment
After deployment, verify your token functions correctly:
- Start the local development environment:
- Use the Superchain Dev Console to mint tokens and test transfers between chains.
Verify that tokens are correctly burned on the source chain and minted on the destination chain with consistent total supply.
Advanced Integration
For projects requiring custom token behavior while maintaining cross-chain compatibility, consider:
- Extending the base SuperchainERC20 contract with additional functionality
- Implementing specific business logic through the owner interface
- Adding governance controls for managing permissions and parameters
Converting Existing ERC20 Tokens
For projects with existing ERC20 tokens, migration to SuperchainERC20 requires:
- Creating a new SuperchainERC20 implementation
- Deploying it deterministically across all target chains
- Setting up a migration mechanism for existing token holders
- Configuring cross-chain permissions correctly
This process preserves token economics while enabling cross-chain functionality.
Resources and Documentation
SuperchainERC20 enables token issuers to seamlessly access Superchain network effects. By leveraging SuperchainERC20 and Superchain interop, developers can focus on building features rather than solving complex cross-chain challenges.
- Use Supersim, a local development tool, to deploy a SuperchainERC20 or build an interop-enabled app
- Learn more about the technical architecture of Superchain interop
- Learn about how other token standards can benefit from Superchain interop