Skip to content

Instantly share code, notes, and snippets.

@0mkara
Last active August 21, 2020 10:56
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 0mkara/3d3302ed3ab68a05f8730fa0d7ee3540 to your computer and use it in GitHub Desktop.
Save 0mkara/3d3302ed3ab68a05f8730fa0d7ee3540 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: MIT
// wETHC token
// This is an ERC-20 token following OpenZepplin guidelines
// This token also wraps around some ether
pragma solidity ^0.6.0;
import "./contracts/token/ERC20/ERC20.sol";
contract F7 is ERC20 {
constructor() ERC20("Ethcode", "ETHC") public {
_mint(msg.sender, 100);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment