Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // SPDX-License-Identifier: MIT
- pragma solidity ^0.8.0;
- import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
- contract ExampleToken is ERC20 {
- constructor() ERC20("ExampleToken", "EXAM") {
- _mint(msg.sender, 1000000000000000000000000); // This sets the supply to 1000 000
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement