From 80d4ffa9e81eec43fc2cc8d6d13ba15167b79f71 Mon Sep 17 00:00:00 2001 From: ujang22688 Date: Thu, 15 May 2025 19:14:42 +0700 Subject: [PATCH] Create Deploy contract Deploy contract OG labs --- Deploy contract | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Deploy contract diff --git a/Deploy contract b/Deploy contract new file mode 100644 index 0000000..b94cf80 --- /dev/null +++ b/Deploy contract @@ -0,0 +1,10 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.20; + +import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; + +contract MyToken is ERC20 { + constructor(uint256 initialSupply) ERC20("MyToken", "MTK") { + _mint(msg.sender, initialSupply); + } +}