https://sepolia.scrollscan.com/
https://docs.scroll.io/es/user-guide/faucet/
Telegram: https://t.me/+Zr__GWzkPZk0OTNi
// 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); | |
} | |
} |