Sample fixed supply token contract on ERC20 standard.
Returns the outstanding supply of all tokens.
function totalSupply() constant returns (uint256)
Returns the balance of the source address.
function balanceOf(address src) constant returns (uint256)
Returns the amount of tokens that a person can withdraw from the source address via the transferFrom function.
function allowance(address src, address guy) constant returns (uint256)
Approves guy to withdraw tokens from msg.sender via the transferFrom function. Throws on uint overflow.
function approve(address guy, uint256 wad) returns (bool)
Transfers wad tokens from msg.sender to the dst address. Throws on uint overflow.
function transfer(address dst, uint wad) returns (bool)
Assumes sufficient approval set by the approve function. Transfers wad tokens from the src address to the dst address and decrements from approvals[src][msg.sender]. Throws on uint overflow.
function transferFrom(address src, address dst, uint wad) returns (bool)
import './SafeMath.sol';
import './ERC20.sol';
Donate Some Ether to the Developer.
Ethereum Address : 0x39886D0BFccc74D8CCb21c44534a41eC626620b3