Untitled
unknown
plain_text
10 months ago
274 B
9
Indexable
// 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 } }
Editor is loading...
Leave a Comment