MiJe
Daniel   Russian Federation
 
 
Information saknas.
För närvarande Offline
Kommentarer
Плюмбус 31 jan, 2024 @ 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())));
}
}