Skip to content

Instantly share code, notes, and snippets.

View RideSolo's full-sized avatar

F/LALIDJI RideSolo

View GitHub Profile
@RideSolo
RideSolo / DailyETC.sol
Created October 27, 2018 18:33 — forked from yuriy77k/DailyETC.sol
DailyETC
pragma solidity ^0.4.18;
contract DailyETC{
mapping (address => uint256) public investedETH;
mapping (address => uint256) public lastInvest;
mapping (address => uint256) public affiliateCommision;
address dev = 0x97a0C5ed827d54aa96830D94118ec3142626DFcd;
@RideSolo
RideSolo / FiftyFlip.sol
Created October 22, 2018 16:14 — forked from yuriy77k/FiftyFlip.sol
FiftyFlip
pragma solidity ^0.4.24;
/* This is fiftyflip
a simple yet elegant game contract
that is connected to Proof of Community
contract(0x08f7039d36f99eedc3d8b02cbd19f854f7dddc4d).
Greed serves no-one but the one,
But charity is kind, suffereth not and envieth not.
Charity is to give of oneself in the service of his fellow beings.
@RideSolo
RideSolo / BitUnits.sol
Created October 21, 2018 04:41 — forked from yuriy77k/BitUnits.sol
BitUnits
contract ERC223 {
uint public totalSupply;
function balanceOf(address who) constant returns (uint);
function name() constant returns (string _name);
function symbol() constant returns (string _symbol);
function decimals() constant returns (uint8 _decimals);
function totalSupply() constant returns (uint256 _supply);
function transfer(address to, uint value) returns (bool ok);
@RideSolo
RideSolo / CryptoRabbits.sol
Created October 8, 2018 17:12 — forked from yuriy77k/CryptoRabbits.sol
CryptoRabbits
pragma solidity ^0.4.24;
/*
______ _ _ _ _ _ ___ __
| ___ \ | | | \ | || \ | \ \ / /
| |_/ / | | | \| || \| |\ V /
| ___ \ | | | . ` || . ` | \ /
| |_/ / |_| | |\ || |\ | | |
\____/ \___/\_| \_/\_| \_/ \_/
_____ ___ ___ ___ _____
| __ \ / _ \ | \/ || ___|
@RideSolo
RideSolo / TechX.sol
Created October 8, 2018 11:25 — forked from yuriy77k/TechX.sol
TechX
pragma solidity ^0.4.24;
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address who) public view returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
@RideSolo
RideSolo / Farm2Kitchen.sol
Created October 6, 2018 00:20 — forked from yuriy77k/Farm2Kitchen.sol
Farm2Kitchen
pragma solidity ^0.4.16;
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
@RideSolo
RideSolo / ScientificCoin.sol
Created October 2, 2018 23:33 — forked from yuriy77k/ScientificCoin.sol
ScientificCoin
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
// ----------------------------------------------------------------------------
contract ERC20Interface {
function totalSupply() public constant returns (uint);
function balanceOf(address tokenOwner) public constant returns (uint balance);
function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
@RideSolo
RideSolo / AQX_2.sol
Created September 30, 2018 08:07 — forked from yuriy77k/AQX_2.sol
Aqua Intel
pragma solidity ^0.4.19;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
assert(c / a == b);
return c;
pragma solidity ^0.4.13;
/**
* @title SafeMath
* Math operations with safety checks
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
@RideSolo
RideSolo / ACLYD.sol
Created September 29, 2018 01:59 — forked from yuriy77k/ACLYD.sol
ACLYD
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'ACLYDTOKEN' token contract
//
// Deployed to : 0x2bea96F65407cF8ed5CEEB804001837dBCDF8b23
// Symbol : ACLYD
// Name : ACLYD
// Total supply: 750000000
// Decimals : 18