mirror of
https://github.com/codex-storage/codex-contracts-eth.git
synced 2025-01-09 19:36:19 +00:00
688a8ed929
Co-authored-by: 0xb337r007 <0xe4e5@proton.me> Co-authored-by: Adam Uhlíř <adam@uhlir.dev>
14 lines
328 B
Solidity
14 lines
328 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.23;
|
|
|
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
|
|
|
contract TestToken is ERC20 {
|
|
// solhint-disable-next-line no-empty-blocks
|
|
constructor() ERC20("TestToken", "TST") {}
|
|
|
|
function mint(address holder, uint256 amount) public {
|
|
_mint(holder, amount);
|
|
}
|
|
}
|