// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /* Library Imports */ import { Predeploys } from "../libraries/Predeploys.sol"; /* Contract Imports */ import { OptimismMintableERC20 } from "../universal/OptimismMintableERC20.sol"; /** * @title BVM_ETH * @dev The ETH predeploy provides an ERC20 interface for ETH deposited to Layer 2. Note that * unlike on Layer 1, Layer 2 accounts do not have a balance field. */ contract L2TestToken is OptimismMintableERC20 { /*************** * Constructor * ***************/ constructor( address _l1addr) OptimismMintableERC20(Predeploys.L2_STANDARD_BRIDGE, _l1addr, "TestToken", "L2T") {} }