Skip to content

Instantly share code, notes, and snippets.

@Doicoin
Doicoin / DOI.sol
Created March 22, 2018 12:46
Doicoin
pragma solidity ^0.4.4;
contract Token {
/// @return total amount of tokens
function totalSupply() constant returns (uint256 supply) {}
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) constant returns (uint256 balance) {}