// SPDX-License-Identifier: MIT pragma solidity 0.8.29; import "ERC20.sol"; /// @title PolygonWGPT ERC20 /// @notice Simple ERC20 token with initial supply minted at deployment contract PolygonWGPT is ERC20 { /// @param initialSupply Initial token amount in wei (18 decimals) constructor(uint256 initialSupply) ERC20("PolygonWGPT", "PWGPT") { _mint(msg.sender, initialSupply); } }