Skip to content

Instantly share code, notes, and snippets.

View RideSolo's full-sized avatar

F/LALIDJI RideSolo

View GitHub Profile

GIGZI Project Audit Report.

1. Summary

This document is a security audit report performed by RideSolo, where GIGZI Project has been reviewed.

GIGZI project promess to issue regulated tokens (GZS silver, GZG gold, GZP platinum) backed by precious metals and also one non-regulated token GZB black. Round of rewards will be distributed to the holders of GZB tokens on their accounts in the form of regulated tokens (GZG) following the project funding. GZB distribution is performed by ICO.

2. In scope

DappVolume Project Audit Report.

In scope

Contract Call to Update

Sevirity: high

MZBoss Project Audit Report.

1. Summary

This document is a security audit report performed by RideSolo, where MZBoss has been reviewed. The smart contract is shares of a casino with a token name of MZBoss.

2. In scope

  • MZBoss github commit hash 58fc7c680c86f5d25bf4a409d990ab7f.

P3C Project Audit Report.

1. Summary

This document is a security audit report performed by RideSolo, where P3C Project has been reviewed.

P3C.io is a game that models Universal Basic Income. The rules of the game are simple:

  • You buy into the contract by purchasing tokens, every token purchased increases the token price by +0.00000001 ETC.

Deconet Project Audit Report.

1. Summary

This document is a security audit report performed by RideSolo, where Deconet Project has been reviewed.

2. In scope

  • Relay.sol github commit hash cdd9660c38018e1d80d7575bc363f5ff69c6dde2.

OPNPlatform Project Audit Report.

1. Summary

This document is a security audit report performed by RideSolo, where OPNPlatform project has been reviewed.

2. In scope

  • Crowdsale.sol github commit hash 5cfd2fc9b3642cf2a20a95b51dc2a0497f939519.

1. Summary

This document is a security audit report performed by RideSolo, where CLO Cold Stacking has been reviewed.

2. In scope

  • ColdStaking.sol github commit hash dde007940a04c6d05b6d63732f1c61a424ecae71.

3. Findings

MZBoss Project Audit Report.

1. Summary

This document is a security audit report performed by RideSolo, where MZBoss has been reviewed.

2. In scope

  • MZBoss_v2 github commit hash 49615f7ef06750ebb4e1f2a54593f128.
@RideSolo
RideSolo / pre_ico_memority.sol
Created September 8, 2018 16:30 — forked from yuriy77k/pre_ico_memority.sol
pre ICO Memority.io
pragma solidity ^0.4.20;
contract owned {
address public owner;
function owned() public {owner = msg.sender;}
modifier onlyOwner { require(msg.sender == owner); _;}
function transferOwnership(address newOwner) onlyOwner public {owner = newOwner;}
}
contract EmtCrowdfund is owned {