# deploying a token contract **Published by:** [pofigist.eth](https://paragraph.com/@pofigist/) **Published on:** 2023-04-05 **URL:** https://paragraph.com/@pofigist/deploying-a-token-contract ## Content // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract CryptonToken is ERC20 { constructor() ERC20("Crypton", "CRPT") { //значения Crypton и CRPT Вы можете установить самостоятельно uint256 power = 10 ** 18; //количество символов после запятой _mint(msg.sender, 1000 * power); // 1000 токенов CRPT } } ## Publication Information - [pofigist.eth](https://paragraph.com/@pofigist/): Publication homepage - [All Posts](https://paragraph.com/@pofigist/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@pofigist): Subscribe to updates