CRYCASH
CRYCASH
Kryptowährung für Gamers!
CRYCASH
Was ist CRYCASH?


Media
SCHLIESSE DICH AN ICO AN
Ecosystem
Ökosystem CRYCASH
Erstellt, um die Gamers und Entwickler mehr aus ihrer Begeisterung gewinnen können



Plink
Anhang Plink
Kontaktiere, kommuniziere und monetisiere Deine Spielzeit in einem Anhang! Schau mal, an welchen Spielen Deine Freunde teilnehmen, stelle ein Team für gemeinsames Spiel zusammen und verdiene CRYCASH-Tokens für die Erfüllung der Spielaufgaben, die ihre Entwickler gestellt haben. Der Anhang Plink wird auch als Geldbörse für die CRYCASH-Halter dienen.

Platform
Advertising platform


Warum CRYCASH?
Vorteile für Tokens-Besitzer
Einzelheiten
Einzelheiten des ICO
Verkauf von Tokens
Verteilung der herausgegebenen Tokens

60,0%
Verkauf von Tokens
15,0%
Langfristige Reserve
10,0%
Berater und Partner
15,0%
Team

Angesammelte Mittel
Verteilung der angesammelten Mittel

30,0%
Entwicklung
30,0%
Programm BuyBack
20,0%
Marketing & Entwicklung des Geschäftes
10,0%
Operationstätigkeit
5,0%
Unvorhergesehene Ausgaben
5,0%
Juristische Begleitung
Legal
Juristische Begleitung
Leute
Team und Rat der Experten
ADVISORY BOARD


Selbst in der CRYCASH-Idee sehen wir ein mächtiges Potential, das wirklich Interessen sowohl der Gamers, als auch der Entwickler der Spiele berücksichtigt. Wir integrieren diese Kryptowährung in unsere Produkte, um das Wohlbefinden für Gamers zu schaffen. Wir werden CRYCASH Advertising Platform auch für Umfassung eines noch breiteren Kreises von potentiellen Benutzern anwenden.


Vor allem können wir die Kryptowährung CRYCASH für die Belohnung der Spieler für ihre Handlungen während des Spiels verwenden, das macht noch niemand. Und die Entwickler können CRYCASH als einen hocheffektiven Mechanismus für das Heranziehen der Gamers in ihre Spiele benutzen.
GitHub
Smart-Vertrag für 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; } }






























