Skip to content

Latest commit

 

History

History
82 lines (57 loc) · 1.98 KB

Interface.md

File metadata and controls

82 lines (57 loc) · 1.98 KB

CpaintChain Network

我们的区块链技术主要是基于substrat的技术框架进行的开发。

接口host

1.wss

wss://mainnet.jiamashexian.com
  1. https
https://mainnet.jiamashexian.com:9933

接口

创建collection

pallet: nft
function: create_collection
参数:

collection_name collection_description token_prefix mode
Vec Vec Vec CollectionMode
名称 描述 暂时没有用 模式(一般可以是ReFungible,ReFungible第一个参数是最多多少NFT,第二个参数是每个NFT最多多少份)

Log
Created(u64, u8, AccountId)

增加collection的admin

pallet: nft
function: add_collection_admin
参数:

collection_id new_admin_id
u64 AccountId
collection_id 新的admin的id

创建item(NFT)

pallet: nft
function: create_item
参数:

collection_id properties owner royalty_rate royalty_expired_at
u64 Vec AccountId u64 BlockNumber
collection_id 属性(metadata) 所有者 版税 版税有效期

Log
ItemCreated(collection_id, item_id)

流转(NFT)

pallet: nft
function: transfer
参数:

recipient collection_id item_id value
AccountId u64 u64 u64
接收者 collection_id item_id 数量

Log
ItemTransfer(collection_id, item_id, value, sender, recipient)

参考文档

Substrate Doc

链的编码

推荐使用的官方的rpc框架

php的编码

php的rpc

链的JSON文件