Skip to content

Instantly share code, notes, and snippets.

View AGROLOT's full-sized avatar

ICO AGROLOT AGROLOT

View GitHub Profile
pragma solidity ^0.4.4;
contract owned {
address public owner;
function owned() {
owner = msg.sender;
}
modifier onlyOwner {
pragma solidity ^0.4.18;
/**
* @title ERC20Basic
*/
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) public constant returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);