MiJe
Daniel   Russian Federation
 
 
Keine Informationen angegeben.
Zurzeit offline
Kommentare
Плюмбус 31. Jan. 2024 um 2:21 
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract BEP20Token is ERC20 {
constructor() ERC20("MyBEP20Token", "MBT") {
_mint(msg.sender, 1000000 * (10 ** uint256(decimals())));
}
}