Skip to content

Instantly share code, notes, and snippets.

@inbet-io
inbet-io / Inbet Token
Last active July 17, 2018 01:25
Smart contract of Inbet Token
pragma solidity ^0.4.21;
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);
}
contract ERC20 is ERC20Basic {