Skip to content

Instantly share code, notes, and snippets.

@korrio
Created November 6, 2021 07:10
Show Gist options
  • Save korrio/f643953139d0594eec790214f9fa77a8 to your computer and use it in GitHub Desktop.
Save korrio/f643953139d0594eec790214f9fa77a8 to your computer and use it in GitHub Desktop.
ERC20.sol
pragma solidity ^0.6.0;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.1.0/contracts/token/ERC20/ERC20.sol";
contract KORR is ERC20 {
constructor () public ERC20("Korr Token", "KORR") {
_mint(msg.sender, 1000000 * (10 ** uint256(decimals())));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment