12 lines
296 B
Solidity
12 lines
296 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.19;
|
|
|
|
import "./AbstractToken.sol";
|
|
|
|
contract L1Token is AbstractToken {
|
|
|
|
constructor(string memory _name, string memory _symbol, uint256 _fixedMint) AbstractToken(_name, _symbol) {
|
|
_mint(msg.sender, _fixedMint * 10 ** 18);
|
|
}
|
|
}
|