Skip to content

Instantly share code, notes, and snippets.

@ChanJuiHuang
Created September 3, 2022 02:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChanJuiHuang/5634912f327184bf9d82d7861bc1ca65 to your computer and use it in GitHub Desktop.
Save ChanJuiHuang/5634912f327184bf9d82d7861bc1ca65 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract RewardToken is ERC20 {
constructor() ERC20("Reward Token", "RT") {
_mint(msg.sender, 100 * 1e18);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment