View agrolot.sol
pragma solidity ^0.4.4; | |
contract owned { | |
address public owner; | |
function owned() { | |
owner = msg.sender; | |
} | |
modifier onlyOwner { |
View Crowdsale.sol
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); |