13 lines
270 B
Solidity
13 lines
270 B
Solidity
|
|
//SPDX-License-Identifier: Unlicense
|
||
|
|
pragma solidity ^0.8.0;
|
||
|
|
|
||
|
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
||
|
|
|
||
|
|
contract QuorumToken is ERC20 {
|
||
|
|
constructor(uint256 initialSupply)
|
||
|
|
ERC20("QuorumToken", "QT")
|
||
|
|
{
|
||
|
|
_mint(msg.sender, initialSupply);
|
||
|
|
}
|
||
|
|
}
|