Skip to content

Instantly share code, notes, and snippets.

@Turupawn
Last active August 10, 2024 20:16
Show Gist options
  • Save Turupawn/529de9174eb338c6afe04bf85d96983e to your computer and use it in GitHub Desktop.
Save Turupawn/529de9174eb338c6afe04bf85d96983e to your computer and use it in GitHub Desktop.
Verificación Hackathon
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract SimpleToken is ERC20 {
constructor() ERC20("My Token", "MTK") {
uint initialSupply = 2_000_000_000;
_mint(msg.sender, initialSupply * 1 ether);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment