GLDToken.sol 283 B

1234567891011
  1. // contracts/GLDToken.sol
  2. // SPDX-License-Identifier: MIT
  3. pragma solidity ^0.8.20;
  4. import {ERC20} from "../../../../token/ERC20/ERC20.sol";
  5. contract GLDToken is ERC20 {
  6. constructor(uint256 initialSupply) ERC20("Gold", "GLD") {
  7. _mint(msg.sender, initialSupply);
  8. }
  9. }