rename lite->basic

This commit is contained in:
Manuel Araoz
2016-11-16 13:13:40 -03:00
parent 10e8d6a09f
commit 8acc783309
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,9 @@
pragma solidity ^0.4.4;
contract ERC20Basic {
uint public totalSupply;
function balanceOf(address who) constant returns (uint);
function transfer(address to, uint value) returns (bool ok);
event Transfer(address indexed from, address indexed to, uint value);
}