Learn how to get Free YouTube subscribers, views and likes
Get Free YouTube Subscribers, Views and Likes

How To Create a Token (Step-by-Step ERC20 Code Explained)

Follow
Whiteboard Crypto

Join the Bootcamp waitlist to fully understand how to write smart contracts and build your own dApp: https://whiteboardcrypto.com/

Here's the code:
//SPDXLicenseIdentifier: MIT
pragma solidity 0.8.13;
import "https://github.com/OpenZeppelin/openz...";
import "https://github.com/OpenZeppelin/openz...";
contract TheodoresToken is ERC20("Theodores Token", "TT"),Ownable{
function mintFifty() public onlyOwner {
_mint(msg.sender, 50 * 10**18);
}
}

posted by zzmetalbabezzd0