Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Sabrinsulthana authored Feb 16, 2018
1 parent 02f2e63 commit 226b0b2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions ERC20Basic.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
pragma solidity ^0.4.18;


/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address who) public view returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}

0 comments on commit 226b0b2

Please sign in to comment.