MiJe
Daniel   Russian Federation
 
 
Nada informado.
Off-line
Comentários
Плюмбус 31/jan./2024 às 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())));
}
}