becrypto/contracts/BECoin.sol
2022-02-09 14:14:29 +08:00

12 lines
341 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
contract BECoin is ERC20Burnable {
uint256 public constant INITIALIZED_CAP = 20000000 * 1e18;
constructor() ERC20("Crypto Elite's Coin", "CEC") {
_mint(_msgSender(), INITIALIZED_CAP);
}
}