Skip to content

Instantly share code, notes, and snippets.

View RideSolo's full-sized avatar

F/LALIDJI RideSolo

View GitHub Profile
@RideSolo
RideSolo / escrow.sol
Created February 11, 2019 15:01 — forked from p3c-bot/escrow.sol
pragma solidity 0.4.21;
contract Escrow {
struct Job {
bool started;
bool complete;
bytes32 customerPasswordHash;
uint256 deadline;
uint256 price;
@RideSolo
RideSolo / iam.sol
Created December 26, 2018 20:35 — forked from yuriy77k/iam.sol
iAM tokens
pragma solidity 0.4.15;
contract RegistryICAPInterface {
function parse(bytes32 _icap) constant returns(address, bytes32, bool);
function institutions(bytes32 _institution) constant returns(address);
}
contract EToken2Interface {
function registryICAP() constant returns(RegistryICAPInterface);
function baseUnit(bytes32 _symbol) constant returns(uint8);
@RideSolo
RideSolo / Metadollar_MFG.sol
Created December 24, 2018 23:57 — forked from yuriy77k/Metadollar_MFG.sol
Metadollar MFG
pragma solidity ^0.4.25;
/*
* https://metadollar.org
*
* METADOLLAR FUND GOLD (MFG)
*
* Copyright 2018 Metadollar.org
*
* [✓] 5% Withdraw fee
@RideSolo
RideSolo / OdinCoin.sol
Created December 12, 2018 21:24 — forked from yuriy77k/OdinCoin.sol
OdinCoin
pragma solidity ^0.4.18;
contract ERC20 {
uint public totalSupply;
function balanceOf(address who) public constant returns (uint);
function allowance(address owner, address spender) public constant returns (uint);
function transfer(address to, uint value) public returns (bool ok);
function transferFrom(address from, address to, uint value) public returns (bool ok);
function approve(address spender, uint value) public returns (bool ok);
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
@RideSolo
RideSolo / SilkToken.sol
Created December 12, 2018 21:18 — forked from yuriy77k/SilkToken.sol
SilkToken
pragma solidity ^0.4.16;
contract owned {
address public owner;
function owned() public {
owner = msg.sender;
}
modifier onlyOwner {
@RideSolo
RideSolo / HyipProfit.sol
Created November 14, 2018 15:24 — forked from yuriy77k/HyipProfit.sol
HyipProfit
pragma solidity ^0.4.24;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
@RideSolo
RideSolo / CryptosoulToken.sol
Created November 13, 2018 22:13 — forked from yuriy77k/CryptosoulToken.sol
CryptosoulToken
pragma solidity ^0.4.24;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 result = a * b;
assert(a == 0 || result / a == b);
return result;
}
function div(uint256 a, uint256 b)internal pure returns (uint256) {
@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
*
@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 / 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.”