Created
January 16, 2025 04:41
-
-
Save SAPikachu/c977ab0e9a8435544d37d8d2511a5592 to your computer and use it in GitHub Desktop.
GXToken.sol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.25; | |
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
contract GXToken is ERC20 { | |
constructor() ERC20("Grindery X", "GX") { | |
_mint(msg.sender, 1_000_000_000 ether); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment