mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-05 06:43:07 +00:00
13 lines
299 B
Solidity
13 lines
299 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
|
|
|
contract TestToken is ERC20 {
|
|
constructor(address[] memory holders) ERC20("TestToken", "TST") {
|
|
for (uint i=0; i<holders.length; i++) {
|
|
_mint(holders[i], 1000);
|
|
}
|
|
}
|
|
}
|