Skip to content

Instantly share code, notes, and snippets.

@ryestew
Created April 22, 2022 11:24
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 ryestew/903f0f61cc7425761d500ad93e681581 to your computer and use it in GitHub Desktop.
Save ryestew/903f0f61cc7425761d500ad93e681581 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.10+commit.fc410830.js&optimize=true&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts@4.5.0/token/ERC20/ERC20.sol";
contract MyToken is ERC20 {
constructor() ERC20("Nightwatch", "MTK") {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment