# Deploy token on any EVM blockchain **Published by:** [cookiejunkie.eth](https://paragraph.com/@cookiejunkie/) **Published on:** 2023-03-06 **URL:** https://paragraph.com/@cookiejunkie/deploy-token-on-any-evm-blockchain ## Content I will now show you how to run your own token on any EVM compatible network, but you have to subscribe to twitter. Lets start! Going to Remix👇 http://remix.ethereum.org/ 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_NAME to the desired token name, TOKEN_TICKER to the token symbol, and TOKEN_SUPPLY to 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 Done! If the material was useful, then subscribe, and I'll tell you something else interesting. Subscribe ## Publication Information - [cookiejunkie.eth](https://paragraph.com/@cookiejunkie/): Publication homepage - [All Posts](https://paragraph.com/@cookiejunkie/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@cookiejunkie): Subscribe to updates