Skip to content

Instantly share code, notes, and snippets.

@infysumanta
Last active June 6, 2023 06:43
Show Gist options
  • Save infysumanta/8843e69877a502efbf83ddf290bcdc78 to your computer and use it in GitHub Desktop.
Save infysumanta/8843e69877a502efbf83ddf290bcdc78 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >= 0.7.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract MyToken is ERC20 {
constructor () ERC20("MyLove Token", "MyLove"){
_mint(msg.sender, 1000000 * 10 ** decimals());
}
}
//0x386e7C3deb49A053d574C6CF86202F90Cf1b6fb6 (Token Hashed Address)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment