parent
535b54da59
commit
b5fb3e4223
@ -0,0 +1,11 @@ |
||||
// SPDX-License-Identifier: MIT |
||||
pragma solidity ^0.8.0; |
||||
|
||||
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; |
||||
|
||||
contract AdPatToken is ERC20 { |
||||
constructor() ERC20("AdPat", "NHPF") { |
||||
uint256 initialSupply = 857400 * (10 ** decimals()); |
||||
_mint(msg.sender, initialSupply); |
||||
} |
||||
} |
Loading…
Reference in new issue