MiJe
Daniel   Russian Federation
 
 
관련 정보가 없습니다.
현재 오프라인
댓글
Плюмбус 2024년 1월 31일 오전 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())));
}
}