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

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

We discovered with great interest on November 15, 2022 on Whiteboard Crypto's Youtube channel a new video that might interest you.

Many of you have been following us for a long time on Croblanc, and you already know that we regularly share new video content from the Youtube channel Whiteboard Crypto which our community is extremely fond of. That's why we're telling you about it today, because this new video might pique your interest.

Today, November 15, 2022, the Youtube channel Whiteboard Crypto has published a new content with the title How To Create a Token (Step-by-Step ERC20 Code Explained). If you want to watch this video in streaming, you have come to the right place!

The video has been posted for less than an hour and is currently the talk of the web. Usually the new videos of the Youtube channel Whiteboard Crypto are much less talked about. Soon in trends? That's all the bad news we wish him, considering the work this channel has been doing for many years now!

You have problems with this content? You have spotted an error in the video that you want to report to the editor? That's why Youtube has set up an "About" section that will allow you to contact all your favorite youtubers and all the channels you need. In case you can't reach the channel you want, you can still use social networks such as twitter where it's very easy to send a message to bring up an information.

You now have all the information about the video How To Create a Token (Step-by-Step ERC20 Code Explained), we hope you like it and that you found it interesting. We hope to see you soon on Croblanc, until then you will be able to watch other videos of Whiteboard Crypto by searching a little on our dedicated platform. If you have already done the trick, go to Youtube, the content is almost infinite!

It's over, let's pack up! See you soon for a new article on your favorite site: Croblanc of course!

For your information, you can find below the description of the video How To Create a Token (Step-by-Step ERC20 Code Explained) published by the Youtube channel 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:
//SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol";
contract TheodoresToken is ERC20("Theodores Token", "TT"),Ownable{
function mintFifty() public onlyOwner {
_mint(msg.sender, 50 * 10**18);
}
}