mirror of https://github.com/logos-co/staking.git
11 lines
274 B
Solidity
11 lines
274 B
Solidity
|
// SPDX-License-Identifier: UNLICENSED
|
||
|
pragma solidity ^0.8.19;
|
||
|
|
||
|
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
||
|
|
||
|
contract MockERC20 is ERC20 {
|
||
|
constructor() ERC20("Mock SNT", "SNT") {
|
||
|
_mint(msg.sender, 1_000_000_000_000_000_000);
|
||
|
}
|
||
|
}
|