Skip to content

Instantly share code, notes, and snippets.

@supxinfy
supxinfy / erc20.sol
Created August 14, 2018 09:22
Simpler ERC-20
pragma solidity ^0.4.24;
/// @title ERC-20
/// @dev Simplle version of ERC-20 interface
/// @author supxinfy
contract Ownerable
{
address public owner;