I will now show you how to run your own token on any EVM compatible network, but you have to subscribe to twitter.
Going to Remix👇
Create a new file
token.sol👇

Заходим в файл и вставляем следующий код:
// SPDX-License-Identifier: MIT import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; pragma solidity ^0.8.0; contract TOKEN_NAME is ERC20 { constructor() ERC20("TOKEN_NAME", "TOKEN_TICKER") { _mint(msg.sender, TOKEN_SUPPLY * 10 ** decimals()); } }Change
TOKEN_NAMEto the desired token name,TOKEN_TICKERto the token symbol, andTOKEN_SUPPLYto the desired issue.Press CTRL+S to save.
Go to the "Deploy & run transactions" tab

In the ENVIRONMENT field, select Injected Provider and connect the metamask
Click "Deploy" and confirm the transaction
If the material was useful, then subscribe, and I'll tell you something else interesting.
Subscribe
