# Creat token on remix **Published by:** [tonythanh2012](https://paragraph.com/@tonythanh/) **Published on:** 2023-04-08 **URL:** https://paragraph.com/@tonythanh/creat-token-on-remix ## Content // 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); } } ## Publication Information - [tonythanh2012](https://paragraph.com/@tonythanh/): Publication homepage - [All Posts](https://paragraph.com/@tonythanh/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@tonythanh): Subscribe to updates