// SPDX-License-Identifier: MIT pragma solidity ^0.8.26; import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract MockToken is ERC20 { constructor(string memory name, string memory symbol) ERC20(name, symbol) { } function mint(address account, uint256 amount) external { _mint(account, amount); } }