Created
July 22, 2023 09:36
-
-
Save partylikeits1983/c66da7fd71af63319f5cf9e37141d7a4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.19; | |
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; | |
contract Token is ERC20 { | |
uint constant _initial_supply = 100 * 1e18 * 1e6; // 100 million | |
string _name = "SBER_TEST_USD"; | |
string _symbol = "USD"; | |
constructor() ERC20(_name, _symbol) { | |
_mint(msg.sender, _initial_supply); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment