Join the Bootcamp waitlist to fully understand how to write smart contracts and build your own dApp: https://whiteboardcrypto.com/ Here's the code: //SPDX-License-Identifier: MIT pragma solidity 0.8.13; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol"; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol"; contract TheodoresToken is ERC20("Theodores Token", "TT"),Ownable{ function mintFifty() public onlyOwner { _mint(msg.sender, 50 * 10**18); } }