// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts@4.8.0/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts@4.8.0/access/Ownable.sol"; contract Testing1 is ERC20, Ownable { constructor() ERC20("testing1", "test") { _mint(msg.sender, 1000000001 * 10 ** decimals()); } }