区块链开发以太坊区块链研习社

ERC721不可互换代币标准

2018-03-07  本文已影响96人  luohuayong

ERC721标准是在ERC20标准上建立的代币标准,是针对不可互换代币(non-fungible tokens 简称NFTs)做的智能合约标准。目前为止只是在草稿阶段(Draft),还未最终定稿。什么是不可互换资产呢,现在正火的加密猫(CryptoKitties)就是一个典型的应用,每只猫都有一个唯一的id。在这个场景下,不仅需要跟踪每个账户下的资产数量,而且需要跟踪每个资产id的转移。

与ERC20标准相同部分

与ERC20标准兼容部分不做详细介绍,想了解ERC20可以看ERC-20代币标准

function name() constant returns (string name);
function symbol() constant returns (string symbol);
function totalSupply() constant returns (uint256 totalSupply);
function balanceOf(address _owner) constant returns (uint256 balance);

与ERC20标准不同部分

方法

ownerOf

function ownerOf(uint256 _tokenId) constant returns (address owner)

approve

function approve(address _to, uint256 _tokenId)
动作 前状态 _to 地址 新状态 事件
清除未设置 清除 0 清除
设置 清除 X 设置为X Approval(owner,X,tokenID)
更改 X Y 设置为Y Approval(owner,Y,tokenID)
重复设置 X X 设置为X Approval(owner,X,tokenID)
清除 X 0 清除 Approval(owner,0,tokenID)

takeOwnership

function takeOwnership(uint256 _tokenId)

tokenOfOwnerByIndex

function tokenOfOwnerByIndex(address _owner, uint256 _index) constant returns (uint tokenId)
uint256 ownerBalance = nonFungibleContract.balanceOf(owner);

uint256[] memory ownerTokens = new uint256[](ownerBalance);

for (uint256 i = 0; i < ownerBalance; i++) {
    ownerTokens[i] = nonFungibleContract.tokenOfOwnerByIndex(owner, i);
}
NFT 元数据

tokenMetadata

function tokenMetadata(uint256 _tokenId) constant returns (string infoUrl)

标准子路径:

事件

Transfer

event Transfer(address indexed _from, address indexed _to, uint256 _tokenId)

Approval

event Approval(address indexed _owner, address indexed _approved, uint256 _tokenId)

标准创建日期:2017-09-20
参考文档 https://github.com/ethereum/EIPs/issues/721

上一篇下一篇

猜你喜欢

热点阅读