Skip to content

Instantly share code, notes, and snippets.

@gulitsky
Last active February 9, 2019 08:58
Show Gist options
  • Save gulitsky/7fee174776fb785b9c501b1fb5e1e973 to your computer and use it in GitHub Desktop.
Save gulitsky/7fee174776fb785b9c501b1fb5e1e973 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.5.3+commit.10d17f24.js&optimize=true&gist=
pragma solidity 0.5.3;
import "https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";
import "https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol";
import "https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/ERC20Capped.sol";
import "https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/ERC20Burnable.sol";
contract OmCoin is ERC20, ERC20Detailed("OmCoin", "OM", 18), ERC20Capped(10000000 * 10 ** 18), ERC20Burnable {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment