Skip to content

Instantly share code, notes, and snippets.

@Pavel1991
Pavel1991 / SoyCoin(SYC)Pre-sale
Created February 28, 2018 14:00
Pre-Sale SYC Token
pragma solidity ^0.4.13;
interface token {
function transfer(address receiver, uint amount) public;
}
/**
* @title Ownable
@Pavel1991
Pavel1991 / SoyCoin(SYC) Token
Created February 18, 2018 09:36
SoyCoin(SYC) Token smart contract
pragma solidity ^0.4.13;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
*/
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) constant returns (uint256);
function transfer(address to, uint256 value) returns (bool);