检测到您已登录华为云国际站账号,为了您更好的体验,建议您访问国际站服务网站 https://www.huaweicloud.com/intl/zh-cn
不再显示此消息
查询数字资产是否铸造 查询指定资产集合下,数字资产标识tokenId是否被铸造。 调用方法 public function isMinted(string $collectionIndex, string $tokenId) throws Exception 参数说明 参数 类型
查询用户级授权用户 查询owner用户是否对operator开启用户级授权。 调用方法 public function isApprovedForAll(string $owner, string $operator)throws Exception 参数说明 参数 类型 说明 owner
拆分子资产给用户 将可组合资产中的子资产拆分转移给指定用户。 调用方法 public function transferChild(string $fromCollectionIndex, string $fromTokenId, string $to, string $childCollectionIndex
查询数字资产描述信息 根据集合标识和内容标识符查询其metadata信息。 调用方法 public function tokenURI(string $collectionIndex, string $tokenId) throws Exception 参数说明 参数 类型 说明
查询集合级授权用户 查询指定资产集合下,owner用户是否对operator开启授权。 调用方法 public function isApprovedForAll(string $collectionIndex, string $owner, string $operator) throws
设置用户级授权用户 为用户设置授权用户,被授权的用户拥有该用户下所有集合的数字资产操作权限。 调用方法 public function setApprovalForAll(string $owner, string $operator, bool $isApproved)throws
设置集合级授权用户 在指定资产集合下,为用户设置授权用户。被授权用户拥有该集合下该用户的所有资产操作权限。 调用方法 public function setApprovalForAll(string $collectionIndex, string $owner, string $operator
查询数字资产描述信息 根据集合标识和内容标识符查询其metadata信息。 调用方法 public function uri(ID $id)throws Exception 参数说明 参数 类型 说明 id ID 必填参数,数字资产标识。 返回值 类型 说明 Metadata 数字资产对应的meta信息。
溯源码管理 溯源码生成 溯源码删除 修改溯源状态 溯源码查询 溯源码列表 溯源信息上链 父主题: 可信溯源
加入可组合资产 某一集合中数字资产的所有者或授权者将该资产加入指定集合中的可组合资产。 调用方法 public function getChild(string $from, string $toCollectionIndex, string $toTokenId, string
监管者注销数字资产 为了满足特殊场景和监管需求,监管者可以销毁指定资产集合中的数字资产。每个租户的管理CA身份默认为监管者。 仅共享版支持该接口调用。 调用方法 public function supervisorBurn(string $collectionIndex, string
查询数字资产所有者 根据集合标识和资产标识符查询其所有者。 调用方法 public function ownerOf(string $collectionIndex, string $tokenId) throws Exception 参数说明 参数 类型 说明 collectionIndex
查询数字资产所有者 根据集合标识和资产标识符查询其所有者。 调用方法 public function ownerOf(ID $id) throws Exception 参数说明 参数 类型 说明 id ID 必填参数,数字资产标识。 返回值 类型 说明 string 所有者身份标识符,例如地址、数字资产标识。
导入用户证书秘钥并切换用户 导入用户证书和私钥,切换sdk当前使用的用户。 调用方法 public function switchIdentityWithPem(string $algorithm, string $cert, string $key) throws Exception
铸造可组合资产 为指定资产集合铸造一个编号为tokenId的可组合资产,可组合数字资产可以拥有若干个子资产,默认最大可拥有20个子资产。 调用方法 public function mint(string $collectionIndex, string $tokenId, Metadata
转移数字资产所有权 将指定集合中的指定数字资产的所有权,从from转移到to用户。 调用方法 public function transferFrom(string $collectionIndex, string $from, string $to, string $tokenId)
转移数字资产所有权 将指定集合中的指定数字资产的所有权,从from转移到to用户。 调用方法 public function safeTransferFrom(string $from, string $to, ID $id) throws Exception 参数说明 参数 类型
查找子资产的根所有者 遍历查询子资产的父所有者,获得子资产的根所有者。 调用方法 public function rootOwnerOfChild(string $childCollectionIndex, string $childTokenId) throws Exception
批量转移数字资产所有权 批量转移不同/相同资产集合中若干数字资产的所有权,从from转移到to用户。 调用方法 public function safeBatchTransferFrom(string $from, string $to, array $ids)throws Exception
查找子资产的父所有者信息 根据子资产的集合标识和资产编号查询其父所有者的信息。 调用方法 public function ownerOfChild(string $childCollectionIndex, string $childTokenId) throws Exception