p2pix-smart-contracts/contracts/mockToken.sol

11 lines
248 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "./@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract MockToken is ERC20 {
constructor(uint256 supply) ERC20("MockBRL", "MBRL") {
_mint(msg.sender, supply);
}
}