
The dedicated cryptocurrency for gamers
CRYCASH is the first cryptocurrency that satisfies all needs of gamers and game developers with its Ecosystem of custom-tailored services. CRYCASH has already confirmed integration into the renowned bestsellers from Crytek, with more partners to come. Connect with tomorrow’s technology today!
CRYCASH
What is a CRYCASH?
CRYCASH is an independent ecosystem of custom-tailored products allowing gamers to monetize their game time and developers – to attract a larger audience for their products. CRYCASH Ecosystem consists of the Plink application, CRYENGINE Marketplace, Advertising Platform, and CyberSport Platform.


Ecosystem
CRYCASH Ecosystem
Designed to let gamers and developers make more from their passion



Plink
Plink App
Communicate, collaborate, and monetize your game time all in a single app! See what games your friends are playing, find teammates for cooperative gaming, and earn CRYCASH tokens for completing game tasks set out by game developers. Plink also serves as a wallet for rewards you receive in CRYCASH.
Early access for token holders

Platform
Advertising platform
Advertising Platform is a brand-new win-win marketing tool developed for game developers based on the CRYCASH Ecosystem: the Plink App and the CRYCASH token. This is a platform where game developers will be able to reach their players. The platform will allow setting game tasks targeting of just the right players according to their age, interests, skill level, and other parameters. Players will pick the objectives up in the Plink application and get CRYCASH rewards after having successfully completed them.
Early access for token holders






Why CRYCASH?
Benefits for token holders
Pay for in-game assets, items and services
Use CRYCASH SDK to integrate CRYCASH with your products and reach millions of players
Name
CRYCASH
Symbol
CRC
Token Sale Date
December 14th 19:00 UTC
Token Sale End
January 31th 18:59 UTC
Hidden CAP
Revealed if 70% of the cap is reached
Currencies accepted
BTC, ETH, BCH, LTC, DASH
Bonus for all
120 hours +15%. December 21st, 2017 - January 5th, 2018: 12%. Starting January 6th, 2018 the bonus amount will decrease 1% every 24 hours until 18:59 UTC on January 31, 2018
Bonus for big investors
+20% for 200+ ETH transactions (throughout token sale)
Token Standard
ERC-20
Token Features
Utility token
Token exchange rate
0.001 ETH per 1 CRC (i.e. 1000 CRC per 1 ETH)
Planed listing on exchanges
1-15 February 2018
Token Sale
Token sale structure

10,0%
Advisors & Partnerships

Funds Allocation
Structure of Funds Allocation

20,0%
Marketing & business
People
Team & Advisory Board
ADVISORY BOARD
GitHub
Smart Contract on GitHub

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69pragma solidity ^0.4.17; import 'zeppelin-solidity/contracts/token/StandardToken.sol'; import 'zeppelin-solidity/contracts/math/SafeMath.sol'; /** * @title CryCashToken */ contract CryCashToken is StandardToken { using SafeMath for uint256; /** * Initial token state **/ string public constant name = "CryCash Token"; string public constant symbol = "CRC"; uint8 public constant decimals = 18; uint256 public constant INITIAL_SUPPLY = 0; address public ico; ///// event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Constructor for creatte token. */ function CryCashToken(address _ico) public { totalSupply = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY; ico = _ico; } /** * @dev Function to mint tokens for ico contract * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) canMint public returns (bool) { require(msg.sender == ico); require(_amount != 0); totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); Transfer(0x0, _to, _amount); return true; } function finishMinting() public returns (bool) { require(msg.sender == ico); mintingFinished = true; MintFinished(); return true; } }












