在 Qubic Creator 的設計下,你需要先透過以下 GraphQL 語法,在已存在的 Contract 中建立一個 NFT Asset 草稿,並設置其圖片與內容。在執行操作前需要先 。
mutation {
assetCreate(
ticket: "TICKET"
contractId: "123"
input: {
metadata: {
name: "My First NFT"
description: "This is my first NFT"
externalLink: "https://myfirstnft.com"
backgroundColor: "#CCC"
animation: "" # or animationUrl
image: "" # or imageUrl
imageThumbnail: "" # or imageThumbnailUrl
traits: [
{
type: "Color"
value: "Blue"
displayType: "STRING"
}
]
}
saleData: {
currency: "TWD"
freeMintEnabled: false
maxOrderLimit: {
enabled: true
limit: 10
}
variants: [
{
maxQuantity: 1
supply: 100
price: "1000"
}
]
}
}
) {
id
createdAt
}
}
{
"data": {
"assetCreate": {
"id": "4741429652311985058",
"createdAt": "2023-10-17T07:35:33.911979544Z"
}
}
}
mutation {
assetUpdate(
ticket: "TICKET"
assetId: "4741429652311985058"
input: {
metadata: {
name: "My First NFT"
description: "This is my first NFT"
externalLink: "https://myfirstnft.com"
backgroundColor: "#CCC"
animation: "" # or animationUrl
image: "" # or imageUrl
imageThumbnail: "" # or imageThumbnailUrl
traits: [
{
type: "Color"
value: "Red"
displayType: "STRING"
}
]
}
saleData: {
currency: "TWD"
freeMintEnabled: false
maxOrderLimit: {
enabled: true
limit: 10
}
variants: [
{
maxQuantity: 1
supply: 100
price: "1000"
}
]
}
}
) {
id
updatedAt
}
}
{
"data": {
"assetUpdate": {
"id": "4741429652311985058",
"updatedAt": "2023-10-17T07:35:33.911979544Z"
}
}
}
mutation {
assetMint(
assetId: "4741429652311985058"
input: {
requestId: "xxxxx"
variantId: "yyyyy"
recipients: [
{
address: "0x"
tokenId: "123456"
quantity: 1
}
]
ensureBuyState: true
}
)
}
{
"data": {
"assetMint": "4741429652311985058"
}
}
https://{your-domain}/store/products/{assetId}