# FIRST 721 俱乐部为什么要做 Wrapped Gen0 CryptoKitties ?

2017年9月20日，CryptoKitties CTO [Dieter Shirley](https://github.com/dete) 提交了ERC-721 的[第一版草案](https://github.com/ethereum/EIPs/issues/721)。ERC-721 是第一个NFT标准，ERC-721对NFT的发展影响巨大，9月20日也被定为[国际NFT日](https://www.internationalnftday.org/)。

[2017年11月23日](https://etherscan.io/tx/0x691f348ef11e9ef95d540a2da2c5f38e36072619aa44db0827e1b8a276f120f4)，CryptoKitties 合约部署在了以太坊主网，成为了第一个ERC-721标准的NFT。

&#x20;ERC-721 的第一版草案还没有setApprovalForAll 这个一次授权所有NFT的方法，只有 approve 这个一次授权单个 NFT 的方法。[2018年2月23日的ERC-721版本](https://github.com/ethereum/EIPs/commit/ab00c604144a35ceb92a51c54538a66e1a4c96a1) 才增加了 setApprovalForAll 方法。因此，CryptoKitties 合约并不包含 setApprovalForAll 方法。此外，CryptoKitties 合约和 Final 版本的ERC-721还有一些其它小的差异。OpenSea 针对 CryptoKitties 做了定制开发，才使得 CryptoKitties 可以在 OpenSea 上交易，其它未针对 CryptoKitties 做定制开发的NFT市场是不支持 CryptoKitties 交易的。即使 OpenSea 支持 CryptoKitties 交易，卖家每挂一个卖单，都要进行一次 Approve 操作，浪费 Gas且不方便用户操作 。

另外，目前 CryptoKitties 的总量是 202 万，且还在增长中，CryptoKitties 在OpenSea 的地板价仅为0.0028 ETH。 NFT 总量和地板价都是非常重要的NFT指标，而CryptoKitties目前的数据，使得不了解CryptoKitties 的用户不太敢投资。

截止到 2023年4月14日，通过 CryptoKitties 链上合约的总交易额是 67,631 ETH， 其中零代猫的总成交额是 36,784 ETH。目前零代猫的总数为38,015。占总数仅1.88%的零代猫，贡献了54.39% 的交易额。

如果能将零代猫做一个独立的 collection， 那么这个 collection 的NFT总数为 38,015, 地板价是为 0.07 ETH(2023年4月14日数据)。 我们认为零代猫的是一个相对较好的投资标的，因此我们选择零代猫通过 Wrap 来实现独立的collection 。

简称 Wrap 后的零代猫为 721WG0。通过质押零代猫到 Wrap 合约，可以获得相同编号的 721WG0 NFT, 721WG0 NFT的图片及属性和原零代猫相同。如质押编号为2000的零代猫，会获得编号为2000的721WG0 NFT。

我们已经完成了 Wrapped Gen0 CryptoKitties 的合约主网发布。721WG0 100%兼容ERC-721 标准，已自动上架element.markt, x2y2.io, looksrare.org 等NFT交易平台。另外后续721WG0 有可能上架Blur Lending，BendDao、NFTFi等NFT Finance平台。

欢迎 Wrap 你的零代猫为721WG0，享受 ERC-721 的便利性。&#x20;

参考资料：

* 2017年9月20日提交的第一版 ERC-721 草案： <https://github.com/ethereum/EIPs/issues/721>&#x20;
* 2018年2月23日，ERC-721 增加了setApprovalForAll 方法： <https://github.com/ethereum/EIPs/commit/ab00c604144a35ceb92a51c54538a66e1a4c96a1>
* 2018年3月20日，ERC-721 的 interface 变为目前在用的 0x80ac58cd: <https://github.com/ethereum/EIPs/commit/d164cb2031503665c7dfbb759272f63c29b2b848>
* 2018年6月22日，ERC-721定稿 Final 版本：<https://github.com/ethereum/EIPs/commit/b015a86658cfc12917507c067fff06f5fbec47fd>
* ERC-721 Final 版本全文： <https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md>
* 国际NFT日网站： <https://www.internationalnftday.org/>
* CryptoKitties 部署在以太坊主网的交易hash： <https://etherscan.io/tx/0x691f348ef11e9ef95d540a2da2c5f38e36072619aa44db0827e1b8a276f120f4>
* CryptoKitties 总量、零代猫总量及成交数据：<https://dune.com/first721club/cryptokitties>
* Wrapped Gen0 CryptoKitties 合约源码：<https://github.com/first721club/wrapped-gen0-cryptokitties>&#x20;
