修改coin的名字和符号

This commit is contained in:
zhl 2022-02-09 14:14:29 +08:00
parent 80527418cd
commit 3e33dd2e8d

View File

@ -6,7 +6,7 @@ import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
contract BECoin is ERC20Burnable { contract BECoin is ERC20Burnable {
uint256 public constant INITIALIZED_CAP = 20000000 * 1e18; uint256 public constant INITIALIZED_CAP = 20000000 * 1e18;
constructor() ERC20("Blissful Elites Coin", "BEC") { constructor() ERC20("Crypto Elite's Coin", "CEC") {
_mint(_msgSender(), INITIALIZED_CAP); _mint(_msgSender(), INITIALIZED_CAP);
} }
} }