Files
staking-reward-streamer/test/mocks/MockToken.sol
2024-09-25 09:39:14 +02:00

13 lines
345 B
Solidity

// 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);
}
}