Files
tokenbound/test/mocks/MockERC20.sol

13 lines
292 B
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract MockERC20 is ERC20 {
constructor() ERC20("MockERC20", "T20") {}
function mint(address to, uint256 amount) external {
_mint(to, amount);
}
}