Untitled
unknown
plain_text
24 days ago
274 B
3
Indexable
Never
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract EcoCoin is ERC20 { constructor() ERC20("EcoCoin", "ECO") { _mint(msg.sender, 1000000000 * 10 ** decimals()); // Mint 1 billion ECO } }
Leave a Comment