|
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.20;
|
|
|
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
|
|
|
contract AdelToken is ERC20 {
|
|
constructor(uint256 initialSupply) ERC20("AdelToken", "ADL") {
|
|
_mint(msg.sender, initialSupply * 10 ** decimals());
|
|
}
|
|
}
|