Create NHPF

pull/5373/head
NHPF2307 2 months ago committed by GitHub
parent 535b54da59
commit b5fb3e4223
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 11
      NHPF

11
NHPF

@ -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…
Cancel
Save