Warning!
QANbuild Beta is intended solely for educational and experimental purposes based on OpenZeppelin contracts.
Please refrain from using it in a real environment with real assets without undergoing third-party security audits.
ERC20ERC721Custom
SolidityJavaScriptTypeScriptGoRustPythonJavaC#CC++
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract MyToken is ERC20 {
constructor()
ERC20("MyToken", "MTK")
{}
}