Skip to content

Instantly share code, notes, and snippets.

View Credits-com's full-sized avatar

Credits blockchain & smart contracts for DAPPS Credits-com

View GitHub Profile
pragma solidity ^0.4.16;
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) constant returns (uint256);
function transfer(address to, uint256 value) returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}