Untitled
Anonymous
plain_text
09/13/2024 6:13 PM
368 B
25
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