Files
sre-03-token-vendor/packages/hardhat/contracts/YourToken.sol
2026-01-12 10:42:14 +07:00

11 lines
335 B
Solidity

pragma solidity 0.8.20; //Do not change the solidity version as it negatively impacts submission grading
// SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
// learn more: https://docs.openzeppelin.com/contracts/5.x/erc20
contract YourToken is ERC20 {
constructor() ERC20("Gold", "GLD") {}
}