/* Crafted with love by Fueled on Bacon https://fueledonbacon.com */ //SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract USDC is ERC20, Ownable { constructor( string memory name, string memory symbol ) ERC20(name, symbol) { } function mint(address account, uint256 amount) external { _mint(account, amount); } function decimals() public view virtual override returns (uint8) { return 6; } receive() external payable {} }