# Deploy token on any EVM blockchain

By [cookiejunkie.eth](https://paragraph.com/@cookiejunkie) · 2023-03-06

---

I will now show you how to run your own token on any EVM compatible network, but you have to subscribe to [twitter](https://twitter.com/CookieJunkiee).

Lets start!
-----------

*   Going to Remix👇
    
    [http://remix.ethereum.org/](http://remix.ethereum.org/)
    
*   Create a new file `token.sol`👇
    

![](https://storage.googleapis.com/papyrus_images/4eb9ca6c3ed91b65f381ea06629b76740ba1115213be44978fb12feeaaaca126.png)

*   Заходим в файл и вставляем следующий код:
    
        // 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
        

![](https://storage.googleapis.com/papyrus_images/816967f513cf13ce0c663c17d729c5a4a43ecebdc293fa74a4f0236f967dc53f.png)

*   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](https://twitter.com/CookieJunkiee), and I'll tell you something else interesting.

[Subscribe](null)

---

*Originally published on [cookiejunkie.eth](https://paragraph.com/@cookiejunkie/deploy-token-on-any-evm-blockchain)*
