├── README.md └── ERC20 /README.md: -------------------------------------------------------------------------------- 1 | Creating your own memcoin, deployment code. Memcoin Husky 2 | -------------------------------------------------------------------------------- /ERC20: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | // Generated with Spectral Syntax 3 | 4 | pragma solidity ^0.8.0; 5 | 6 | import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; 7 | 8 | contract DoggyHus is ERC20 { 9 | constructor() ERC20("DoggyHus", "HUSK") { 10 | uint256 initialSupply = 100000000 * (10**18); 11 | _mint(msg.sender, initialSupply); 12 | } 13 | } 14 | --------------------------------------------------------------------------------