mirror of
https://github.com/vacp2p/staking-reward-streamer.git
synced 2026-01-09 15:27:55 -05:00
13 lines
345 B
Solidity
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);
|
|
}
|
|
}
|