CryptoKitties 是用什么语言编写的?

In what language is CryptoKitties programmed?

我想了解我需要什么来开发类似于 CryptoKitties 的程序。据我了解,它使用 JS 连接到 Metamask,并使用它自己的私有区块链作为 kitties 实体。

我了解 CS,正在学习 JS ES6,想了解开发类似应用程序需要什么。

我也很好奇如果我想为 Ios 开发一个类似的程序,除了 Swift 之外我还需要什么。谢谢!

Crypto Kitties 使用 Solidity 编程,Solidity 是一种用于在以太坊区块链上创建智能合约的编程语言。

查看文档以开始使用: http://solidity.readthedocs.io/en/develop/

智能合约部分编码在Solidity. The web ui connect with the blockchain by using JS, specifically Web3.js。顺便说一句,它由三个不同的智能合约组成:

  1. The core smart contract code.
  2. The sale auction.
  3. The sire auction.