Skip to content

Instantly share code, notes, and snippets.

View RideSolo's full-sized avatar

F/LALIDJI RideSolo

View GitHub Profile
@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 / 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 / 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 / CryptoRabbits.sol
Created October 8, 2018 17:12 — forked from yuriy77k/CryptoRabbits.sol
CryptoRabbits
pragma solidity ^0.4.24;
/*
______ _ _ _ _ _ ___ __
| ___ \ | | | \ | || \ | \ \ / /
| |_/ / | | | \| || \| |\ V /
| ___ \ | | | . ` || . ` | \ /
| |_/ / |_| | |\ || |\ | | |
\____/ \___/\_| \_/\_| \_/ \_/
_____ ___ ___ ___ _____
| __ \ / _ \ | \/ || ___|
@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 / 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 / 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 / ProofOfCommunity.sol
Created October 29, 2018 15:53 — forked from yuriy77k/ProofOfCommunity.sol
ProofOfCommunity
pragma solidity ^0.4.20;
/*
Built for the community.
Supported by the community.
“Equality... is when you don't feel the existence of word”
Talees Rizvi
“The world is round so that friendship may encircle it.”
@RideSolo
RideSolo / BlackPearlETC.sol
Created October 29, 2018 15:54 — forked from yuriy77k/BlackPearlETC.sol
BlackPearlETC
pragma solidity ^0.4.20;
contract BlackPearlETC {
/*=================================
= MODIFIERS =
=================================*/
/// @dev Only people with tokens
@RideSolo
RideSolo / easyinvestup.sol
Created November 1, 2018 04:56 — forked from yuriy77k/easyinvestup.sol
easyinvestup
pragma solidity ^0.4.24;
/***********************************************************
* Easy Investment UP Contract
* - GAIN 4.5% PER 24 HOURS (every 5900 blocks) 60 days
* - GAIN 5% PER 24 HOURS (every 5900 blocks) 40 days
* - GAIN 5.3% PER 24 HOURS (every 5900 blocks) 30 days
* - GAIN 6.5% PER 24 HOURS (every 5900 blocks) 20 days
* - GAIN 9.3% PER 24 HOURS (every 5900 blocks) 12 days
*