CRYCASH

CRYCASH

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!
CRC total supply:
7057137.099

You can exchange CRC on:

More coming soon!

Ecosystem

Latest CRC adoptions in gaming industry

Partners

Partners

We are supported by legendary brands. Inspired by the potential of crypto, they integrate CRYCASH technologies into their own products.

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.
CRYTEK CO-FOUNDER/MANAGING DIRECTOR
Faruk Yerli
submit
WARFACE CREATIVE DIRECTOR
Michael Khaimzon
submit

Media

MEDIA

Ecosystem

CRYCASH Ecosystem

Designed to let gamers and developers make more from their passion

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

Warface Turkey

Warface is a free-to-play online first-person shooter enjoyed by more than 50 million players around the world. Earn CRYCASH tokens upon completing tasks and pay for in-game items.

In-game items with CRYCASH

submit

MARKETPLACE

BETA

POPULARITY

Shotgun

M590 Shotgun

Pay for in-game assets and services with CRYCASH. Use the built-in CRYCASH SDK to integrate CRYCASH with your products and reach millions of players worldwide.

CRC 26.91

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

Details

Token details

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

60,0%

Token Sale

15,0%

Long-term Reserve

10,0%

Advisors & Partnerships

15,0%

Team

Funds Allocation

Structure of Funds Allocation

30,0%

Development

30,0%

Buy Back program

20,0%

Marketing & business

10,0%

Operation

5,0%

Contingency

5,0%

Legal

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
69
pragma 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;
  }
}

Copyright © 2017-2021 CRYCASH

All trademarks and copyrights belong to their respective owners