Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions packages/contracts-bedrock/src/L2/SuperchainERC20Beacon.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;

import { IBeacon } from "@openzeppelin/contracts/proxy/beacon/IBeacon.sol";

/// @title SuperchainERC20Beacon
/// @notice SuperchainERC20Beacon is the beacon proxy for the SuperchainERC20 implementation.
contract SuperchainERC20Beacon is IBeacon {
/// TODO: Replace with real implementation address
/// @notice Address of the SuperchainERC20 implementation.
address internal constant IMPLEMENTATION_ADDRESS = 0x0000000000000000000000000000000000000000;

/// @inheritdoc IBeacon
function implementation() external pure override returns (address) {
return IMPLEMENTATION_ADDRESS;
}
}