// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts@4.7.3/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts@4.7.3/access/Ownable.sol"; contract IScamPeople is ERC20, Ownable { constructor() ERC20("I Scam People", "SCAMMER") { _mint(msg.sender, 1 * 10 ** decimals()); } function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } }