Skip to content

Instantly share code, notes, and snippets.

@SAPikachu
Created January 16, 2025 04:41
Show Gist options
  • Save SAPikachu/c977ab0e9a8435544d37d8d2511a5592 to your computer and use it in GitHub Desktop.
Save SAPikachu/c977ab0e9a8435544d37d8d2511a5592 to your computer and use it in GitHub Desktop.
GXToken.sol
// 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