# Creat token on remix

By [tonythanh2012](https://paragraph.com/@tonythanh) · 2023-04-08

---

    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.9;
    
    import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
    import "@openzeppelin/contracts/access/Ownable.sol";
    
    contract USDC is ERC20, Ownable {
        constructor() ERC20("TONY", "TONY") {
            _mint(msg.sender, 10000000 * 4 ** decimals());
        }
    
        function mint(address to, uint256 amount) public onlyOwner {
            _mint(to, amount);
        }
    }

---

*Originally published on [tonythanh2012](https://paragraph.com/@tonythanh/creat-token-on-remix)*
