10grans-ng/contracts/L1Token.sol

12 lines
296 B
Solidity
Raw Normal View History

2023-08-20 13:46:39 +00:00
// 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);
}
}