// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import {ERC20} from '@openzeppelin/contracts/token/ERC20/ERC20.sol'; contract Currency is ERC20('Currency Test', 'TEST') { function mint(address to, uint256 amount) external { _mint(to, amount); } }