Skip to content

Instantly share code, notes, and snippets.

@partylikeits1983
Created July 22, 2023 09:36
Show Gist options
  • Save partylikeits1983/c66da7fd71af63319f5cf9e37141d7a4 to your computer and use it in GitHub Desktop.
Save partylikeits1983/c66da7fd71af63319f5cf9e37141d7a4 to your computer and use it in GitHub Desktop.
// 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