mirror of
https://github.com/codex-storage/codex-contracts-eth.git
synced 2025-01-09 19:36:19 +00:00
11 lines
223 B
Solidity
11 lines
223 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
|
|
|
contract TestToken is ERC20 {
|
|
constructor() ERC20("TestToken", "TST") {
|
|
_mint(msg.sender, 1000);
|
|
}
|
|
}
|